Détail du package

react-docgen-annotation-resolver

Jmeyering238.2kMIT2.0.0

readme

Build Status code style: prettier

react-docgen-annotation-resolver

Parse @component annotated export as a react component.

const myComponent = () => (
  <h1>Component</h1>
);

/**
 * @component
 */
export default myComponent;

changelog

2.0.0 / 2019-07-02

  • Support for react-docgen 5.0.0

1.1.0 / 2018-08-09

  • Resolve components wrapped in HOCs to their definitions
  • Upgrade to prettier for all code style.
  • Enable TravisCI

1.0.0 / 2017-07-13

  • Initial Commit - the resolver currently finds export declarations tagged with the @component annotation, and returns them to react-docgen.