logo
Updated

Storybook Docs Style Reset

type: #tech


meta > parameters > docs > page にstyleを埋め込むと、上書きできる

  const meta: Meta<typeof Component> = {
  title: 'component',
  component: Component,
  parameters: {
    
    docs: {
      page: () => (
        <>
          <style>{`
            h2 { background-color: #fff; }
          `}</style>

          <DocsPage />
        </>
      ),
      description: {
        component: `

## デザイン仕様
`,
      },
    },
  },
  tags: ['autodocs'],
}