mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
26 lines
473 B
TypeScript
26 lines
473 B
TypeScript
const App = `import {User, Link} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<User
|
|
name="Junior Garcia"
|
|
description={(
|
|
<Link href="https://twitter.com/jrgarciadev" size="sm" isExternal>
|
|
@jrgarciadev
|
|
</Link>
|
|
)}
|
|
avatarProps={{
|
|
src: "https://avatars.githubusercontent.com/u/30373425?v=4"
|
|
}}
|
|
/>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|