Skip to content

Commit

Permalink
add Nav component
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiorosa1 committed Jan 15, 2020
1 parent 52f06e9 commit 0d8f6ed
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
import React from 'react';
import Navigation from './components/Navigation/Navigation';
import './App.css';

function App() {
return (
<div className="App">
<h1>Green Check Submit</h1>
{/* <Navigation /> */}
<Navigation />
{/* <Logo /> */}
{/* <SignIn /> */}
{/* <Register /> */}
{/* <Profile /> */}
{/* <SubmitionComponent /> */}
<h1>Green Check Submit</h1>
</div>
);
}
Expand Down
12 changes: 12 additions & 0 deletions src/components/Navigation/Navigation.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from 'react';


const Navigation = () =>{
return (
<div>
<h1>Nav Component</h1>
</div>
);
}

export default Navigation;

0 comments on commit 0d8f6ed

Please sign in to comment.