npm.io
2.0.0 • Published 7 years ago

react-docgen-annotation-resolver

Licence
MIT
Version
2.0.0
Deps
0
Size
3 kB
Vulns
0
Weekly
0
Stars
19

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;