Data table with sorting and pagination support.
import { Table, TableHeader, TableBody, TableRow, TableHead, TableCell } from "@/components/ui";| Name | Status | Role |
|---|---|---|
| Alice Johnson | Active | Admin |
| Bob Smith | Pending | Editor |
| Carol Williams | Inactive | Viewer |
<Table>
<TableHeader>
<TableRow>
<TableHead>Name</TableHead>
<TableHead>Email</TableHead>
<TableHead>Role</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{users.map((user) => (
<TableRow key={user.id}>
<TableCell>{user.name}</TableCell>
<TableCell>{user.email}</TableCell>
<TableCell>{user.role}</TableCell>
</TableRow>
))}
</TableBody>
</Table>Add visual enhancements
<Table striped hoverable> ...</Table>Configure your app with the features you need and download production-ready code.
Start Configuring