Junior Garcia 83508b4cc6 Revert "Merge branch 'main' into next"
This reverts commit f35b5f58eb846f4ceee1a97dc60ff4ad88518d80, reversing
changes made to 3780a237fdb23c2196d47e2dc4a1f1073954d8f9.
2022-03-21 02:29:25 -03:00

18 lines
250 B
TypeScript

const App = `import { Checkbox } from "@nextui-org/react";
export default function App() {
return (
<Checkbox disabled checked={true}>
Default
</Checkbox>
);
}`;
const react = {
'/App.js': App
};
export default {
...react
};