```ts // .storybook/preview.tsx import React from 'react'; import { Preview } from '@storybook/react'; const preview: Preview = { decorators: [ // 👇 Defining the decorator in the preview file applies it to all stories (Story, { parameters }) => { // 👇 Make it configurable by reading from parameters const { pageLayout } = parameters; switch (pageLayout) { case 'page': return ( // Your page layout is probably a little more complex than this ;)
); case 'page-mobile': return (
); case default: // In the default case, don't apply a layout return ; } }, ], }; export default preview; ```