mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
22 lines
519 B
TypeScript
22 lines
519 B
TypeScript
const App = `import {Code} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<div className="flex gap-4">
|
|
<Code size="xs">npm install @nextui-org/react</Code>
|
|
<Code size="sm">npm install @nextui-org/react</Code>
|
|
<Code size="md">npm install @nextui-org/react</Code>
|
|
<Code size="lg">npm install @nextui-org/react</Code>
|
|
<Code size="xl">npm install @nextui-org/react</Code>
|
|
</div>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|