2.0.0 • Published 5 years ago

react-docgen-annotation-resolver v2.0.0

Weekly downloads
122,971
License
MIT
Repository
github
Last release
5 years ago

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;