mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
This reverts commit f35b5f58eb846f4ceee1a97dc60ff4ad88518d80, reversing changes made to 3780a237fdb23c2196d47e2dc4a1f1073954d8f9.
29 lines
537 B
TypeScript
29 lines
537 B
TypeScript
const App = `import { Checkbox } from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Checkbox.Group color="secondary" value={["buenos-aires"]}>
|
|
<Checkbox value="buenos-aires">
|
|
Buenos Aires
|
|
</Checkbox>
|
|
<Checkbox value="sydney">
|
|
Sydney
|
|
</Checkbox>
|
|
<Checkbox value="london">
|
|
London
|
|
</Checkbox>
|
|
<Checkbox value="tokyo">
|
|
Tokyo
|
|
</Checkbox>
|
|
</Checkbox.Group>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
'/App.js': App
|
|
};
|
|
|
|
export default {
|
|
...react
|
|
};
|