react-docgen-typescript-loader
react-docgen-typescript-loader copied to clipboard
defaultProps as variable
trafficstars
My component uses a config as defaultProps
const config = {
color: 'primary'
}
MyComponent.defaultProps = {
color: config.color
}
When the doc is generated the default value is generated not with the variable value primary, but by his name config.color

If I use static value works fine
Is there a way to make it work?