mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
23 lines
529 B
TypeScript
23 lines
529 B
TypeScript
const App = `import {Table, TableHeader, TableColumn, TableBody, TableRow, TableCell} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Table aria-label="Example empty table">
|
|
<TableHeader>
|
|
<TableColumn>NAME</TableColumn>
|
|
<TableColumn>ROLE</TableColumn>
|
|
<TableColumn>STATUS</TableColumn>
|
|
</TableHeader>
|
|
<TableBody emptyContent={"No rows to display."}>{[]}</TableBody>
|
|
</Table>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|