10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import { ComponentStory, ComponentMeta } from "@storybook/react";
|
|
import Loading from "./Loading";
|
|
|
|
export default {
|
|
title: "Loading",
|
|
component: Loading,
|
|
} as ComponentMeta<typeof Loading>;
|
|
|
|
export const Default: ComponentStory<typeof Loading> = () => <Loading />;
|