/* * App * Overall App wrapper, contains a lot of the logic and handling of how the * site will function and display. * * Dependencies: * styles/components/_app.scss * * Version: * 1.0.0 - 2018/02/23 */ import React from 'react'; import Header from './components/Header'; class App extends React.Component { constructor(props) { super(props); } render() { return (
App
) } } export default App;