const MoonIcon = `export const MoonIcon = (props) => (
);`;
const SunIcon = `export const SunIcon = (props) => (
);`;
const App = `import {Switch} from "@nextui-org/react";
import {MoonIcon} from "./MoonIcon";
import {SunIcon} from "./SunIcon";
export default function App() {
return (
isSelected ? (
) : (
)
}
>
Dark mode
);
}`;
const react = {
"/App.jsx": App,
"/MoonIcon.jsx": MoonIcon,
"/SunIcon.jsx": SunIcon,
};
export default {
...react,
};