nr-react-list

nr-react-list React component


Keywords
react-component, map, list, react, lodash, reactjs
License
MIT
Install
npm install nr-react-list@1.2.1

Documentation

nr-react-list

npm package

Utility Component to render an iterator(Array of objects)

List with an "item" prop

const data = ['one', 'two', 'three'];
const Button = ({ item }) => <button>{item}</button>;

// Use List Component
// Notice the button component has an "item' prop
// By default List component expect an item prop

<List of={Button} iterator={data} />;

Will render

    <button>one</button>
    <button>two</button>
    <button>three</button>

List with a custom propname

const navs = ['Home', 'About', 'Contact'];

const NavLink = ({ display }) => <li>{display}</li>;

// just add a custom "propname" prop to List Component
render () {
    return (
        <ul>
            <List of={NavLink} iterator={navs} propname="display" />
        </ul>

    )
}

Will render

<ul>
    <li>Home</li>
    <li>About</li>
    <li>Contact</li>
</ul>