DEV Community

Discussion on: Remove padding from storybook

Collapse
 
martinratinaud profile image
Martin Ratinaud • Edited

You can also use this on a component basis

const meta: Meta<typeof Component> = {
  title: 'CSS/Layouts/Aside Layout',
  component: Component,
  parameters: {
    layout: 'fullscreen',
  },
  argTypes: {},
} as Meta;
Enter fullscreen mode Exit fullscreen mode

Thanks for pointing me in the right direction