mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-18 01:32:23 -06:00
14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
|
|
|
|
import UserCardSkeleton from "./UserCardSkeleton";
|
|
|
|
const meta: Meta<typeof UserCardSkeleton> = {
|
|
title: "Components/UserCardSkeleton",
|
|
component: UserCardSkeleton,
|
|
};
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof UserCardSkeleton>;
|
|
|
|
export const Default: Story = {};
|