Added Navbar, Header and App
This commit is contained in:
@@ -1,5 +1,18 @@
|
||||
/*
|
||||
* 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);
|
||||
@@ -8,6 +21,7 @@ class App extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<div className="c-app">
|
||||
<Header />
|
||||
App
|
||||
</div>
|
||||
)
|
||||
|
Reference in New Issue
Block a user