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