Skip to content

Instantly share code, notes, and snippets.

@cbrannen9a
Created November 12, 2018 16:49
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 cbrannen9a/18a9e0916ff3561c8063ec115fb94952 to your computer and use it in GitHub Desktop.
Save cbrannen9a/18a9e0916ff3561c8063ec115fb94952 to your computer and use it in GitHub Desktop.
Example App.js
import React, { Component } from 'react';
import './App.css';
import Example from './Example';
class App extends Component {
render() {
return (
<div className="App">
<Example />
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment