Skip to content

Commit 7f7c612

Browse files
authored
feat(component-showcase) add Skeleton component to showcase layout (#253)
1 parent 0b542e2 commit 7f7c612

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

components/examples/component-showcase.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ import {
1818
} from "@/components/ui/8bit/select";
1919
import { Textarea } from "@/components/ui/8bit/textarea";
2020

21-
import { CalendarExample } from "@/components/examples/calendar";
2221
import { CommandExample } from "@/components/examples/command";
2322

2423
import ChartAreaStep from "../ui/8bit/blocks/chart-area-step";
2524
import ChartBarMultiple from "../ui/8bit/blocks/chart-bar";
2625
import GameOver from "../ui/8bit/blocks/game-over";
2726
import MainMenu from "../ui/8bit/blocks/main-menu";
27+
import { Skeleton } from "../ui/8bit/skeleton";
2828

2929
export default function ComponentShowcase() {
3030
return (
@@ -121,7 +121,7 @@ export default function ComponentShowcase() {
121121
<ChartBarMultiple />
122122
</CardContent>
123123
</Card>
124-
<CalendarExample />
124+
125125
<Card>
126126
<CardHeader>
127127
<CardTitle>Product Status</CardTitle>
@@ -146,6 +146,10 @@ export default function ComponentShowcase() {
146146
</Card>
147147

148148
<CommandExample />
149+
150+
<Skeleton className="w-full h-full flex flex-col justify-center items-center">
151+
Skeleton
152+
</Skeleton>
149153
</div>
150154
</div>
151155
);

0 commit comments

Comments
 (0)