Skip to content

Instantly share code, notes, and snippets.

@piyushgarg-dev
Created April 21, 2020 15:00
Show Gist options
  • Save piyushgarg-dev/3fb8d0fbb8d96bf16d4cf63214f4c95d to your computer and use it in GitHub Desktop.
Save piyushgarg-dev/3fb8d0fbb8d96bf16d4cf63214f4c95d to your computer and use it in GitHub Desktop.
import React from 'react';
import { Switch, Route } from 'react-router-dom'
import './App.css';
import Conatct from './pages/contact'
import Blog from './pages/blog'
import Index from './pages/index'
function App() {
return (
<Switch>
<Route path='/contact' component={ <Contact />}/>
<Route path='/blogs' component={<Blog />}/>
<Route exact path='/' component={<Index />}/>
</Switch>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment