2017-06-28 19:16:21 +00:00
|
|
|
import React from 'react'
|
2017-02-14 02:24:50 +00:00
|
|
|
import Link from 'next/link'
|
2017-06-28 19:16:21 +00:00
|
|
|
|
|
|
|
export default class Index extends React.Component {
|
|
|
|
static getInitialProps ({ req }) {
|
|
|
|
if (req) {
|
|
|
|
// Runs only in the server
|
|
|
|
const faker = require('faker')
|
|
|
|
const name = faker.name.findName()
|
|
|
|
return { name }
|
|
|
|
}
|
|
|
|
|
|
|
|
// Runs only in the client
|
|
|
|
return { name: 'Arunoda' }
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { name } = this.props
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h1>Home Page</h1>
|
|
|
|
<p>Welcome, {name}</p>
|
|
|
|
<div>
|
2018-12-17 16:34:32 +00:00
|
|
|
<Link href='/about'>
|
|
|
|
<a>About Page</a>
|
|
|
|
</Link>
|
2017-06-28 19:16:21 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|