storybook meta 타이틀을 함수로 생성하게끔 하려했다. 하지만, 직접 constant 로 입력해야 했다.
Not Work
const meta: Meta<SingleButtonProps> = {
title: generateMetaTitle({ d1: 'Component', d2: 'Button', d3: 'SingleButton' }),
component: SingleButton,
tags: ['autodocs'],
};
Work
const meta: Meta<SingleButtonProps> = {
title: 'Component/Button/SingleButton',
component: SingleButton,
tags: ['autodocs'],
};
'2️⃣ 개발 지식 B+ > 에러 해결 모음' 카테고리의 다른 글
Module build failed (from ./node_modules/@storybook/builder-webpack5/node_modules/babel-loader/lib/index.js): in storybook (0) | 2023.09.29 |
---|---|
Storybook Typescript 설정 (0) | 2023.09.28 |
[antd] SyntaxError: Cannot use import statement outside a module (0) | 2023.09.28 |
nuxt project에서 import (0) | 2021.03.30 |
Error: listen EADDRINUSE: address already in use :::port (0) | 2021.02.19 |