2023-05-27 22:38:13 -03:00

23 lines
536 B
TypeScript

const App = `import {Avatar} from "@nextui-org/react
export default function App() {
return (
<div className="flex gap-3 items-center">
<Avatar src="https://i.pravatar.cc/150?u=a042581f4e29026024d" />
<Avatar name="Junior" />
<Avatar src="https://i.pravatar.cc/150?u=a042581f4e29026704d" />
<Avatar name="Jane" />
<Avatar src="https://i.pravatar.cc/150?u=a04258114e29026702d" />
<Avatar name="Joe" />
</div>
);
}`;
const react = {
"/App.jsx": App,
};
export default {
...react,
};