Delete App.js

This commit is contained in:
AkhilBarthwal005 2020-10-28 14:01:04 +05:30 committed by GitHub
parent a6b7f1edb8
commit 1d6c4195d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
import React from "react";
import {BrowserRouter as Router ,Route ,Switch} from 'react-router-dom'
import Home from './components/home';
import Nav from './components/nav'
function App() {
return (
<div>
<Router>
<Nav></Nav>
<Switch>
<Route exact path = "/" component = {Home} />
</Switch>
</Router>
</div>
);
}
export default App;