File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
html , body {
2
2
height : 100% ;
3
3
font-family : ' Open Sans' , sans-serif ;
4
+
5
+ p {
6
+ font-size : 16px ;
7
+ line-height : 24px ;
8
+ }
4
9
}
5
10
6
11
body {
Original file line number Diff line number Diff line change 1
1
import React , { Component } from 'react' ;
2
+ import { Link } from 'react-router-dom' ;
2
3
import { Helmet } from 'react-helmet' ;
3
4
import css from './index.scss' ;
4
5
@@ -10,6 +11,15 @@ export default class HomeContainer extends Component {
10
11
< title > Home</ title >
11
12
</ Helmet >
12
13
< h1 > It Works!</ h1 >
14
+ < p >
15
+ You've successfully started up your first universally rendered react
16
+ and redux app.< br />
17
+ Hint: Try View Source on this page to see that it was
18
+ rendered on the server as well.
19
+ </ p >
20
+ < p >
21
+ Check out the < Link to = '/todos' > todos list</ Link > .
22
+ </ p >
13
23
</ div >
14
24
) ;
15
25
}
Original file line number Diff line number Diff line change 1
1
.home {
2
2
h1 {
3
- font-size : 50 px ;
3
+ font-size : 30 px ;
4
4
}
5
5
}
You can’t perform that action at this time.
0 commit comments