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