Skip to content

Instantly share code, notes, and snippets.

@adeelibr
Last active April 22, 2018 13:10
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 adeelibr/4ee660544768de5642f3d2acd88d3817 to your computer and use it in GitHub Desktop.
Save adeelibr/4ee660544768de5642f3d2acd88d3817 to your computer and use it in GitHub Desktop.
A skeleton react app
import React from 'react';
import { render } from 'react-dom';
const App = () => {
return (
<div>
<h3>Our Application Is Alive</h3>
<p>This isn’t reality. This — is fantasy.</p>
<p>Yes I am quoting Star Trek I cant help it.</p>
</div>
);
}
render(<App />, document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment