mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
20 lines
253 B
TypeScript
20 lines
253 B
TypeScript
const App = `import { Switch,Spacer } from '@nextui-org/react';
|
|
|
|
export default function App() {
|
|
return (
|
|
<>
|
|
<Switch />
|
|
<Spacer />
|
|
<Switch checked={true} />
|
|
</>
|
|
)}
|
|
`;
|
|
|
|
const react = {
|
|
'/App.js': App
|
|
};
|
|
|
|
export default {
|
|
...react
|
|
};
|