const App = `import {Table, TableHeader, TableColumn, TableBody, TableRow, TableCell, RadioGroup, Radio} from "@nextui-org/react"; const colors = ["default", "primary", "secondary", "success", "warning", "danger"]; export default function App() { const [selectedColor, setSelectedColor] = React.useState("default"); return (
NAME ROLE STATUS Tony Reichert CEO Active Zoey Lang Technical Lead Paused Jane Fisher Senior Developer Active William Howard Community Manager Vacation
{colors.map((color) => ( {color} ))}
); }`; const react = { "/App.jsx": App, }; export default { ...react, };