skip to Main Content

Reactjs – Nextui Table with custom component inside Table body

I am using NextUI Table component. This is the expected usage from the docs: <Table aria-label="Example static collection table"> <TableHeader> <TableColumn>NAME</TableColumn> <TableColumn>ROLE</TableColumn> <TableColumn>STATUS</TableColumn> </TableHeader> <TableBody> <TableRow key="1"> <TableCell>Tony Reichert</TableCell> <TableCell>CEO</TableCell> <TableCell>Active</TableCell> </TableRow> </TableBody> </Table> All I'm trying to achieve is…

VIEW QUESTION
Back To Top
Search