Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 518 Bytes

File metadata and controls

17 lines (13 loc) · 518 Bytes

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;