Skip to content

Commit 823a23e

Browse files
committed
list-component
1 parent f326919 commit 823a23e

File tree

4 files changed

+5
-41
lines changed

4 files changed

+5
-41
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# react-list-components
1+
# react-list-component
22

3-
[![Build Status](https://travis-ci.org/the-road-to-learn-react/react-list-components.svg?branch=master)](https://travis-ci.org/the-road-to-learn-react/react-list-components) [![Slack](https://slack-the-road-to-learn-react.wieruch.com/badge.svg)](https://slack-the-road-to-learn-react.wieruch.com/) [![Greenkeeper badge](https://badges.greenkeeper.io/the-road-to-learn-react/react-list-components.svg)](https://greenkeeper.io/)
3+
[![Build Status](https://travis-ci.org/the-road-to-learn-react/react-list-component.svg?branch=master)](https://travis-ci.org/the-road-to-learn-react/react-list-component) [![Slack](https://slack-the-road-to-learn-react.wieruch.com/badge.svg)](https://slack-the-road-to-learn-react.wieruch.com/) [![Greenkeeper badge](https://badges.greenkeeper.io/the-road-to-learn-react/react-list-component.svg)](https://greenkeeper.io/)
44

5-
Different list components implemented in React. [Read more about it](https://www.robinwieruch.de/react-list-components/).
5+
Different list components implemented in React. [Read more about it](https://www.robinwieruch.de/react-list-component/).
66

77
## Installation
88

9-
* `git clone git@github.com:the-road-to-learn-react/react-list-components.git`
10-
* cd react-list-components
9+
* `git clone git@github.com:the-road-to-learn-react/react-list-component.git`
10+
* cd react-list-component
1111
* npm install
1212
* npm start
1313
* visit `http://localhost:3000/`

src/components/ComplexList.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,6 @@ const list = [
1313
lastname: 'Davidds',
1414
year: 1990,
1515
},
16-
{
17-
id: 'c',
18-
firstname: 'Robin',
19-
lastname: 'Davidds',
20-
year: 1988,
21-
},
22-
{
23-
id: 'd',
24-
firstname: 'Dave',
25-
lastname: 'Wieruch',
26-
year: 1990,
27-
},
2816
];
2917

3018
const ComplexList = () => (

src/components/ListComponents.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,6 @@ const list = [
1313
lastname: 'Davidds',
1414
year: 1990,
1515
},
16-
{
17-
id: 'c',
18-
firstname: 'Robin',
19-
lastname: 'Davidds',
20-
year: 1988,
21-
},
22-
{
23-
id: 'd',
24-
firstname: 'Dave',
25-
lastname: 'Wieruch',
26-
year: 1990,
27-
},
2816
];
2917

3018
const ListComponents = () => <List list={list} />;

src/components/NestedList.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,6 @@ const list = [
1313
lastname: 'Davidds',
1414
year: 1990,
1515
},
16-
{
17-
id: 'c',
18-
firstname: 'Robin',
19-
lastname: 'Davidds',
20-
year: 1988,
21-
},
22-
{
23-
id: 'd',
24-
firstname: 'Dave',
25-
lastname: 'Wieruch',
26-
year: 1990,
27-
},
2816
];
2917

3018
const nestedLists = [list, list];

0 commit comments

Comments
 (0)