This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/src/common/Table/TableEmpty.tsx

14 lines
299 B
TypeScript

import { TableRow, TableCell, Typography } from '@material-ui/core';
function TableEmpty() {
return (
<TableRow>
<TableCell colSpan={100}>
<Typography align="center">Brak danych do wyświetlenia</Typography>
</TableCell>
</TableRow>
);
}
export default TableEmpty;