We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbe38f3 commit b3c67eaCopy full SHA for b3c67ea
src/containers/FirstPage.js
@@ -11,9 +11,7 @@ class FirstPage extends Component {
11
const b64 = this.props.staticContext ? 'wait for it' : window.btoa('wait for it')
12
return (
13
<div className='bold'>
14
- <p>
15
- First Page
16
- </p>
+ <h2>First Page</h2>
17
<p>{`Email: ${this.props.user.email}`}</p>
18
<p>{`b64: ${b64}`}</p>
19
<Link to={'/second'}>Second</Link>
src/containers/SecondPage.js
@@ -10,9 +10,7 @@ class SecondPage extends Component {
10
render() {
- Second Page
+ <h2>Second Page</h2>
<Link to={'/'}>First</Link>
</div>
)
0 commit comments