domsPlace/public/App.jsx
2018-03-03 17:03:41 +11:00

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