storybook/docs/snippets/common/storybook-main-preview-head.js.mdx
2021-05-06 21:05:56 +01:00

14 lines
181 B
Plaintext

```js
// .storybook/main.js
module.exports = {
previewHead: (head) => (`
${head}
<style>
#main {
background-color: yellow;
}
</style>
`);
};
```