import { Component } from 'react' import Link from 'next/link' import Head from 'next/head' import fetch from 'isomorphic-unfetch' export default class extends Component { static async getInitialProps ({ query }) { // fetch single post detail const response = await fetch(`https://jsonplaceholder.typicode.com/posts/${query.id}`) const post = await response.json() return { ...post } } render () { return (
{this.props.title}

{this.props.title}

{this.props.body}

Go back to home
) } }