Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit a3e4d03

Browse files
committed
omot IDs, install recompose
1 parent 571c182 commit a3e4d03

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

‎package-lock.json

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"react-redux": "^5.0.6",
1111
"react-router-dom": "^4.2.2",
1212
"react-scripts": "1.0.13",
13+
"recompose": "^0.25.0",
1314
"redux": "^3.7.2"
1415
},
1516
"scripts": {

‎src/components/App/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const App = () =>
3232

3333
<hr/>
3434

35-
<span>Found in <a href="https://roadtoreact.com/course-details?courseId=TAMING_THE_STATE">Taming the State in React</a></span> | <span>Star the <a href="https://github.com/rwieruch/react-firebase-authentication">Repository</a></span> | <span>Receive a <a href="https://www.getrevue.co/profile/rwieruch">Developer's Newsletter</a></span>
35+
<span>Found in <a href="https://roadtoreact.com/course-details?courseId=TAMING_THE_STATE">Taming the State in React</a></span> | <span>Star the <a href="https://github.com/rwieruch/react-redux-firebase-authentication">Repository</a></span> | <span>Receive a <a href="https://www.getrevue.co/profile/rwieruch">Developer's Newsletter</a></span>
3636
</div>
3737
</Router>
3838

‎src/components/Home/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ class HomePage extends Component {
3535

3636
const UserList = ({ users }) =>
3737
<div>
38-
<h2>List of App Users (Saved on Sign Up)</h2>
38+
<h2>List of App User IDs (Saved on Sign Up in Firebase Database)</h2>
3939
{users.map(user =>
40-
<div key={user.index}>{user.username} ({user.index})</div>
40+
<div key={user.index}>{user.index}</div>
4141
)}
4242
</div>
4343

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /