青いやつの進捗日記。

メモとしてべんきょうのしんちょくをかいていきます。あとで自分が検索しやすいもん

【リンクメモ】Stotyrbook 白いコンポーネントの確認のため背景黒くする

https://storybook.js.org/docs/essentials/backgrounds

import { WhiteButton } from './WhiteButton';

const meta: Meta<typeof WhiteButton> = {
  title: 'common/WhiteButton',
  component: WhiteButton,
  parameters: {
    backgrounds: {
      default: 'dark',
    },
  },
};