@nelreina/react-list

3.2.0 • Public • Published

@nelreina/react-list

version 2.0.0 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>

Dependents (2)

Package Sidebar

Install

npm i @nelreina/react-list

Weekly Downloads

2

Version

3.2.0

License

MIT

Unpacked Size

5.38 kB

Total Files

7

Last publish

Collaborators

  • nelreina