File tree 3 files changed +63
-1
lines changed
3 files changed +63
-1
lines changed Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+
3
+ export class Main extends React . Component {
4
+ render ( ) {
5
+ return (
6
+ < div >
7
+ < div className = "row" >
8
+ < div className = "col-xs-12" >
9
+ < h1 > The Main Page</ h1 >
10
+ </ div >
11
+ </ div >
12
+ < div className = "row" >
13
+ < div className = "col-xs-12" >
14
+ < button
15
+ className = "btn btn-primary"
16
+ onClick = { ( ) => this . props . changeUsername ( 'Anna' ) } > Change the Username</ button >
17
+ </ div >
18
+ </ div >
19
+ </ div >
20
+ ) ;
21
+ }
22
+ }
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+
3
+ export class User extends React . Component {
4
+ render ( ) {
5
+ return (
6
+ < div >
7
+ < div className = "row" >
8
+ < div className = "col-xs-12" >
9
+ < h1 > The User Page</ h1 >
10
+ </ div >
11
+ </ div >
12
+ < div className = "row" >
13
+ < div className = "col-xs-12" >
14
+ < p > User Name: { this . props . username } </ p >
15
+ </ div >
16
+ </ div >
17
+ </ div >
18
+ ) ;
19
+ }
20
+ }
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import { render } from "react-dom" ;
3
+
4
+ import { User } from './components/User' ;
5
+ import { Main } from './components/Main' ;
6
+
3
7
class App extends React . Component {
8
+ constructor ( ) {
9
+ super ( ) ;
10
+ this . state = {
11
+ username : "Max"
12
+ } ;
13
+ }
14
+
15
+ changeUsername ( newName ) {
16
+ this . setState ( {
17
+ username : newName
18
+ } ) ;
19
+ }
20
+
4
21
render ( ) {
5
22
return (
6
- < h1 > Hello Redux World!</ h1 >
23
+ < div className = "container" >
24
+ < Main changeUsername = { this . changeUsername . bind ( this ) } />
25
+ < User username = { this . state . username } />
26
+ </ div >
7
27
) ;
8
28
}
9
29
}
You can’t perform that action at this time.
0 commit comments