import type { Meta, StoryFn } from '@storybook/react'; import type { LoadingProps } from './loading'; import { Loading } from './loading'; export default { title: 'UI/Loading', component: Loading, } satisfies Meta; const Template: StoryFn = args => ; export const Default: StoryFn = Template.bind(undefined); Default.args = {};