mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
24 lines
369 B
TypeScript
24 lines
369 B
TypeScript
const App = `import { Link, Button } from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Button
|
|
href="https://github.com/nextui-org/nextui"
|
|
as={Link}
|
|
color="primary"
|
|
showAnchorIcon
|
|
variant="solid"
|
|
>
|
|
Button Link
|
|
</Button>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|