Skip to content

Instantly share code, notes, and snippets.

@wharley
Last active January 3, 2018 00:20
Show Gist options
  • Save wharley/3cc6fb908084027a62387ee4408793dd to your computer and use it in GitHub Desktop.
Save wharley/3cc6fb908084027a62387ee4408793dd to your computer and use it in GitHub Desktop.
import { Component } from 'react'
import Header from '../components/Header'
export default class extends Component {
static getInitialProps () {
return { data: 'My personal blog' }
}
render () {
return (
<div>
<Header />
<p>{this.props.data}</p>
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment