Closed2

material-uiのカスタムthemeがstorybookに反映されなくて奮闘する

koichikoichi

reactの方は<ThemeProvider theme={theme}>を読み込んでいるが、storybookでは読み込んでいないので反映されない。

koichikoichi

めんどくさいけど、Templateを作成していちいちかましてあげて一旦解決

Button.stories.tsx

const Template = ({ children }: any) => (
  <ThemeProvider theme={theme}>{children}</ThemeProvider>
);

export const Normal = () => (
  <Template>
    <Button>Hoge</Button>
  </Template>
);
このスクラップは2021/06/03にクローズされました