mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
15 lines
212 B
TypeScript
15 lines
212 B
TypeScript
const App = `import { Button } from '@nextui-org/react';
|
|
|
|
export default function App() {
|
|
return <Button disabled>Disabled</Button>
|
|
}
|
|
`;
|
|
|
|
const react = {
|
|
'/App.js': App
|
|
};
|
|
|
|
export default {
|
|
...react
|
|
};
|