mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
20 lines
323 B
TypeScript
20 lines
323 B
TypeScript
const App = `import {Card, CardBody} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Card>
|
|
<CardBody>
|
|
<p>Make beautiful websites regardless of your design experience.</p>
|
|
</CardBody>
|
|
</Card>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|