const data = `export const animals = [ {key: "cat", label: "Cat"}, {key: "dog", label: "Dog"}, {key: "elephant", label: "Elephant"}, {key: "lion", label: "Lion"}, {key: "tiger", label: "Tiger"}, {key: "giraffe", label: "Giraffe"}, {key: "dolphin", label: "Dolphin"}, {key: "penguin", label: "Penguin"}, {key: "zebra", label: "Zebra"}, {key: "shark", label: "Shark"}, {key: "whale", label: "Whale"}, {key: "otter", label: "Otter"}, {key: "crocodile", label: "Crocodile"} ];`; const SelectorIcon = `export const SelectorIcon = (props) => ( );`; const App = `import {Select, SelectItem} from "@nextui-org/react"; import {SelectorIcon} from "./SelectorIcon"; import {animals} from "./data"; export default function App() { return ( ); }`; const react = { "/App.jsx": App, "/data.js": data, "/SelectorIcon.jsx": SelectorIcon, }; export default { ...react, };