mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
15 lines
182 B
Plaintext
15 lines
182 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
previewHead: (head) => (`
|
|
${head}
|
|
<style>
|
|
#main {
|
|
background-color: yellow;
|
|
}
|
|
</style>
|
|
`);
|
|
};
|
|
```
|