import FileEntry from "./FileEntry"; import { Tr } from "../translate"; function FilesTable(props) { if (props.files.length === 0) { return null; } return ( {props.files.map((file) => ( ))}
{Tr("Filename")} {Tr("Folder Name")} {Tr("Size")}
); } export default FilesTable;