Last active
August 12, 2018 09:24
-
-
Save s4kh/681846d3686c4dee15340480c7e63070 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {withRouter} from 'react-router-dom'; | |
class Trips extends React.Component { | |
render() { | |
const { location: { pathname } } = this.props | |
return ( | |
<h1>Hello people, currenty at: {pathname}</h1> | |
) | |
} | |
} | |
export default withRouter(Trips); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment