import type { ComponentMeta, ComponentStory } from '@storybook/react'; import PageSkeleton from '.'; export default { argTypes: { animate: { control: 'boolean' }, displayHeaderAndNavigation: { control: 'boolean' } }, component: PageSkeleton, title: 'Page Skeleton' } as ComponentMeta; const TemplatePageSkeleton: ComponentStory = (args) => ( ); export const PlaygroundPageSkeleton = TemplatePageSkeleton.bind({}); PlaygroundPageSkeleton.args = { animate: true, displayHeaderAndNavigation: true }; export const normal = (): JSX.Element => ; export const normalWidthHeaderAndNavigation = (): JSX.Element => ( );