Doesn't works =(
import { withReadme } from 'storybook-readme';
import Component from './Component'
import ComponentReadme from './README.md';
export default {
title: "Component",
component: Component,
decorators: [withKnobs, withReadme],
parameters: {
readme: {
sidebar: ComponentReadme,
},
}
};
If you are getting the error Cannot read property 'theme' of undefined, you can fix it by providing an empty options object:
export default {
title: "Component",
component: Component,
decorators: [withKnobs, withReadme],
parameters: {
readme: {
sidebar: ComponentReadme,
},
options: {} // <-- Provide an empty options object here
}
};
@tuchk4 @PlayMa256 can we release the fix for theme being undefined?
@JBallin I thought it was released half-year ago...
Released it now.
Most helpful comment
@JBallin I thought it was released half-year ago...
Released it now.