Skip to content

Instantly share code, notes, and snippets.

@ovpv
Created August 6, 2019 05:22
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/7df5b14c717cd656610dec327938408d to your computer and use it in GitHub Desktop.
Save ovpv/7df5b14c717cd656610dec327938408d to your computer and use it in GitHub Desktop.
App component to be used in common by client and server side
import React, { Component, Fragment } from "react";
export default class App extends Component {
render() {
return (
<Fragment>
<div>Hello World</div>
</Fragment>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment