mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
24 lines
517 B
TypeScript
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,
|
|
};
|