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