Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created November 4, 2018 16:07
Show Gist options
  • Save amandeepmittal/c35da13f254953bc62bca3036c0a7666 to your computer and use it in GitHub Desktop.
Save amandeepmittal/c35da13f254953bc62bca3036c0a7666 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { Route, Switch } from 'react-router-dom';
import Home from './components/Home';
class Routes extends Component {
render() {
return (
<Switch>
<Route exact path="/" component={Home} />
</Switch>
);
}
}
export default Routes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment