Skip to content

Instantly share code, notes, and snippets.

@s4kh
Last active August 12, 2018 09:24
Show Gist options
  • Save s4kh/681846d3686c4dee15340480c7e63070 to your computer and use it in GitHub Desktop.
Save s4kh/681846d3686c4dee15340480c7e63070 to your computer and use it in GitHub Desktop.
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