TableRow
- React
To implement TableRow component into your project you'll need to add the import:
import { TableRow } from "@shoptet/ui";
After adding import into your project you can use it simply like:
<TableBody>
<TableRow>
<TableCell>John Doe</TableCell>
<TableCell>john@example.com</TableCell>
<TableCell>Active</TableCell>
</TableRow>
<TableRow>
<TableCell>Jane Smith</TableCell>
<TableCell>jane@example.com</TableCell>
<TableCell>Inactive</TableCell>
</TableRow>
</TableBody>