react-docgen-typescript-loader icon indicating copy to clipboard operation
react-docgen-typescript-loader copied to clipboard

defaultProps as variable

Open tiagoporto opened this issue 6 years ago • 0 comments
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

Annotation 2019-11-08 134249

If I use static value works fine

Is there a way to make it work?

tiagoporto avatar Nov 08 '19 16:11 tiagoporto