Skip to content

Commit a659f6f

Browse files
committed
add tutorial to README.md
1 parent 94334a2 commit a659f6f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
[![Build Status](https://travis-ci.org/the-road-to-react-with-firebase/react-redux-firebase-authentication.svg?branch=master)](https://travis-ci.org/the-road-to-react-with-firebase/react-redux-firebase-authentication) [![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-react-with-firebase/react-redux-firebase-authentication.svg)](https://greenkeeper.io/)
44

5-
* [Tutorial](https://www.robinwieruch.de/complete-firebase-authentication-react-tutorial/)
5+
* [React + Firebase Tutorial](https://www.robinwieruch.de/complete-firebase-authentication-react-tutorial/)
6+
* [React + Firebase + Redux Tutorial](https://www.robinwieruch.de/react-firebase-redux-tutorial)
67
* [Live Version of half of the Tutorial](https://react-redux-firebase-authentication.wieruch.com/)
78

89
## Features

src/components/Home/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@ class HomePage extends Component {
1818
}
1919

2020
render() {
21-
const { users } = this.props;
22-
2321
return (
2422
<div>
2523
<h1>Home Page</h1>
2624
<p>The Home Page is accessible by every signed in user.</p>
2725

28-
<Messages users={users} />
26+
<Messages users={this.props.users} />
2927
</div>
3028
);
3129
}

0 commit comments

Comments
 (0)