2023-09-12 13:18:47 -03:00

24 lines
517 B
TypeScript

const App = `import {Skeleton} from "@nextui-org/react";
export default function App() {
return (
<div className="max-w-[300px] w-full flex items-center gap-3">
<div>
<Skeleton className="flex rounded-full w-12 h-12"/>
</div>
<div className="w-full flex flex-col gap-2">
<Skeleton className="h-3 w-3/5 rounded-lg"/>
<Skeleton className="h-3 w-4/5 rounded-lg"/>
</div>
</div>
);
}`;
const react = {
"/App.jsx": App,
};
export default {
...react,
};