storybook/docs/_snippets/storybook-main-preview-head.md
2024-06-13 17:53:08 +01:00

220 B

export default {
  previewHead: (head) => (`
    ${head}
    <style>
      #main {
        background-color: yellow;
      }
    </style>
  `);
};