```jsx filename=".storybook/preview.jsx" renderer="react" language="js" import React from 'react'; import { ThemeProvider } from 'styled-components'; // themes = { light, dark } import * as themes from '../src/themes'; export default { decorators: [ // 👇 Defining the decorator in the preview file applies it to all stories (Story, { parameters }) => { // 👇 Make it configurable by reading the theme value from parameters const { theme = 'light' } = parameters; return ( ); }, ], }; ``` ```tsx filename=".storybook/preview.tsx" renderer="react" language="ts" import React from 'react'; import type { Preview } from '@storybook/react'; import { ThemeProvider } from 'styled-components'; // themes = { light, dark } import * as themes from '../src/themes'; const preview: Preview = { decorators: [ // 👇 Defining the decorator in the preview file applies it to all stories (Story, { parameters }) => { // 👇 Make it configurable by reading the theme value from parameters const { theme = 'light' } = parameters; return ( ); }, ], }; export default preview; ```