This recipe assumes that you already have a React app using @mui/material
and have just set up Storybook >= 7.0 using the getting started guide. Don't have this? Follow MUI's setup instructions then run:
@storybook/addon-themes
To get started, you'll need to install @storybook/addon-themes
.
Run the following script to install and register the addon:
Under the hood, this runs npx @storybook/auto-config themes
, which should read your project and try to configure your Storybook with the correct decorator. If running that command directly does not solve your problem, please file a bug on the @storybook/auto-config repository so that we can further improve it. To manually add this addon, install it, and then add it to the addons array in your .storybook/main.ts
.
Material UI depends on two fonts to render as intended, Google’s Roboto
and Material Icons
. While you can load these fonts directly from the Google Fonts CDN, bundling fonts with Storybook is better for performance.
To get started, install the fonts as dependencies.
Then import the CSS files into .storybook/preview.js
, the entry point of your Storybook.
Inside of .storybook/preview.js
, import <CssBaseline />
, <ThemeProvider />
, and your theme(s), then apply them to your stories with the withThemeFromJSXProvider
decorator by adding it to the decorators
array.
When you provide more than one theme, a toolbar menu will appear in the Storybook UI to select your desired theme for your stories.
Storybook controls give you graphical controls to manipulate a component’s props. They’re handy for finding edge cases of a component and prototyping in the browser.
Usually, you have to manually configure controls. But if you’re using Typescript, you can reuse Material UI’s component prop types to auto-generate story controls. As a bonus, this will also automatically populate the prop table in your documentation tab.
Let’s take the following Button component for example.
Here I’m using the label prop as the MuiButton
’s child and passing all other props through. However, when we render this into Storybook, our controls panel only lets us change the label prop that we declared ourselves.
This is because Storybook only adds props to the controls table that are explicitly declared in the component’s prop types or in the Story Args. Let’s update Storybook’s Docgen configuration to bring Material UI‘s Button props into the controls table as well.
We also want to update the parameters in .storybook/preview.js
to show the description and default columns for the controls table.
Lastly, update the ButtonProps
type to extend from Material UI’s Button props to add all of these props to the controls.
Restart your Storybook server so that these config changes take effect. You should now see that Button has controls for all of MuiButton
's props as well.
Our button now has 27 props, which is perhaps a little much for your use case. To control which props are visible we can use TypeScript’s Pick<type, keys>
and Omit<type, keys>
utilities.
And now our Button will only take the variant, size, and color props from MuiButton
.
📣 Shout out to Eric Mudrak’s awesome Storybook with React & TypeScript article that inspired this tip.