import React from 'react'; import { StoryFn, Meta } from '@storybook/react'; import { SkeletonList, SkeletonListProps } from './SkeletonList'; export default { title: 'Global/Skeleton/List', component: SkeletonList, } as Meta; const Template: StoryFn = (args: SkeletonListProps) => ; export const Default = Template.bind({}); Default.args = {};