Skip to content

Instantly share code, notes, and snippets.

@ovpv
Created August 6, 2019 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ovpv/707b7ec2fa5a08b30ab3e00d8634791b to your computer and use it in GitHub Desktop.
Save ovpv/707b7ec2fa5a08b30ab3e00d8634791b to your computer and use it in GitHub Desktop.
Home component for react ssr
import React, { Component, Fragment } from "react";
export default class Home extends Component {
render() {
return (
<Fragment>
<p>this is Home</p>
</Fragment>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment