mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
18 lines
279 B
TypeScript
18 lines
279 B
TypeScript
const App = `import { Checkbox } from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Checkbox rounded color="primary" initialChecked={true}>
|
|
Rounded option
|
|
</Checkbox>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
'/App.js': App
|
|
};
|
|
|
|
export default {
|
|
...react
|
|
};
|