This commit is contained in:
mbaharip
2023-05-25 21:15:22 +07:00
parent ab94d98f41
commit f890a77d6d
+33
View File
@@ -0,0 +1,33 @@
function RootLoading() {
return (
<div
className={
"mx-auto flex h-full w-full max-w-screen-xl flex-col gap-2"
}
>
<div
className={
"flex h-6 w-full items-center justify-between gap-2 tablet:gap-4"
}
>
<div
className={
"skeleton mr-auto h-full w-24 py-1 tablet:w-32"
}
/>
<div
className={
"skeleton h-full w-24 py-1 tablet:w-32"
}
/>
</div>
<div
className={
"skeleton h-full min-h-[50dvh] w-full rounded-lg px-4 py-2"
}
></div>
</div>
);
}
export default RootLoading;