34 lines
579 B
JavaScript
34 lines
579 B
JavaScript
/*
|
|
* 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';
|
|
|
|
import IndexPage from './components/pages/IndexPage';
|
|
|
|
class App extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="c-app">
|
|
<Header />
|
|
<IndexPage />
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default App;
|