An open API service indexing awesome lists of open source software.

https://github.com/codewell/component-map

Higher order React component that maps out other components.
https://github.com/codewell/component-map

Last synced: 8 months ago
JSON representation

Higher order React component that maps out other components.

Awesome Lists containing this project

README

          

# @codewell/component-map

## Installation

```
npm install @codewell/component-map
```

## Basic Usage

```JSX
import ComponentMap from '@codewell/component-map';

const Foo = ({ name, commonProp1 }) => (


{name} foo - {commonProp1}

);

props.name}
/>

```