test(ocme): cycle count intital improvements
This commit is contained in:
22
frontend/src/components/ocme/CycleCountLog.tsx
Normal file
22
frontend/src/components/ocme/CycleCountLog.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import {LstCard} from "../extendedUI/LstCard";
|
||||
import {CardContent, CardHeader} from "../ui/card";
|
||||
import {Skeleton} from "../ui/skeleton";
|
||||
|
||||
export default function CycleCountLog() {
|
||||
return (
|
||||
<LstCard className="w-48">
|
||||
<CardHeader className="flex justify-center">
|
||||
<span>Cycle Count logs</span>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
{Array(10)
|
||||
.fill(0)
|
||||
.map((_, i) => (
|
||||
<div key={i}>
|
||||
<Skeleton className="m-2 h-4" />
|
||||
</div>
|
||||
))}
|
||||
</CardContent>
|
||||
</LstCard>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user