domsPlace/public/App.jsx

32 lines
514 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';
class App extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div className="c-app">
<Header />
App
</div>
)
}
}
export default App;