import type { Meta, StoryFn } from '@storybook/react' import React from 'react' import Loading from '.' type ComponentProps = React.ComponentProps const meta: Meta = { title: 'Loading', component: Loading, parameters: { layout: 'centered', chromatic: { disableSnapshot: true }, }, } export default meta const Template: StoryFn = (args) => { return } export const Default: StoryFn = Template.bind({}) Default.args = {}