Show how to import custom fonts in Storybook

This commit is contained in:
Joseph Garrone 2023-11-02 21:27:34 +01:00
parent 23a71f8fa0
commit bb019e66fb
2 changed files with 13 additions and 3 deletions

View file

@ -15,7 +15,13 @@ export function createPageStory<PageId extends KcContext["pageId"]>(params: {
storyPartialKcContext: params.kcContext
});
return <KcApp kcContext={kcContext} />;
return (
<>
{/* If you import custom fonts in your index.html you have to import them in storybook as well*/}
<link rel="stylesheet" type="text/css" href="fonts/WorkSans/font.css" />
<KcApp kcContext={kcContext} />
</>
);
}