import React from 'react' import Link from 'next/prefetch' import 'isomorphic-fetch' export default class MyPage extends React.Component { static async getInitialProps () { // eslint-disable-next-line no-undef const res = await fetch('https://api.github.com/repos/zeit/next.js') const json = await res.json() return { stars: json.stargazers_count } } render () { return (

Next.js has {this.props.stars} ⭐️

How about preact?
) } }