TableFooter
- React
To implement TableFooter component into your project you'll need to add the import:
import { TableFooter } from "@shoptet/ui";
After adding import into your project you can use it simply like:
<Table>
<TableBody>{/* table rows */}</TableBody>
<TableFooter>
<TableRow>
<TableCell colSpan={3}>Showing 1-10 of 50 results</TableCell>
</TableRow>
</TableFooter>
</Table>