student table optimization adn docker testing
This commit is contained in:
@@ -43,4 +43,4 @@
|
||||
"./components/*": "./src/components/*.tsx",
|
||||
"./hooks/*": "./src/hooks/*.ts"
|
||||
}
|
||||
}
|
||||
}
|
||||
12
packages/ui/src/components/skeleton.tsx
Normal file
12
packages/ui/src/components/skeleton.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { cn } from '@workspace/ui/lib/utils';
|
||||
|
||||
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
|
||||
return (
|
||||
<div
|
||||
className={cn('animate-pulse rounded-md bg-muted', className)}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export { Skeleton };
|
||||
Reference in New Issue
Block a user