strothj/react-docgen-typescript-loader

defaultProps as variable

Opened this issue · 0 comments

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

Annotation 2019-11-08 134249

If I use static value works fine

Is there a way to make it work?