In progress header components.

This commit is contained in:
Patrick Fic
2019-12-03 19:03:34 -07:00
parent 8bcb4516c5
commit 0741915b66
12 changed files with 1927 additions and 884 deletions

View File

@@ -1,28 +1,16 @@
import React from 'react';
import logo from './logo.svg';
import './App.css';
import React from "react";
import "./App.css";
import 'typeface-roboto';
import "typeface-roboto";
function App() {
return (~
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
import HeaderAppBar from "./components/header-app-bar/header-app-bar.component";
const App = () => {
return (
<div>
<HeaderAppBar />
</div>
);
}
};
export default App;