mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
19 lines
334 B
TypeScript
19 lines
334 B
TypeScript
const App = `import {Checkbox} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<div className="flex gap-4">
|
|
<Checkbox isDisabled>Option</Checkbox>
|
|
<Checkbox isDisabled defaultSelected>Option</Checkbox>
|
|
</div>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|