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

https://github.com/bronsondunbar/library-list-component

List component for React [NPM Package]
https://github.com/bronsondunbar/library-list-component

nodejs nodemodule react reactcomponent

Last synced: 23 days ago
JSON representation

List component for React [NPM Package]

Awesome Lists containing this project

README

          

# List Component

List component for React

Install and save component as a dependency

```

npm install --save library-list-component

```

Import component into your app

```

import List from 'library-list-component'

```

Create an array of objects with the key being data

```

const listData = [
{
data: "Item one",
content: [
{
data: "Sub item one"
}
]
},
{
data: "Item two"
},
{
data: "Item three"
},
{
data: "Item four"
},
{
data: "Item five"
}
]

```

Render the component with the object array we created as well as any other props that are needed

```

render () {
const listData = [
{
data: "Item one",
content: [
{
data: "Sub item one"
}
]
},
{
data: "Item two"
},
{
data: "Item three"
},
{
data: "Item four"
},
{
data: "Item five"
}
]

return (

)
}

```

| Prop | Values |
| :--------------- | :------------------------------------- |
| listData | Object |
| listStyleType | default, circle, decimal, alpha, roman |
| listAlign | left, right, center |
| listInline | true or false |
| subListStyleType | default, circle, decimal, alpha, roman |