Answers for "how to capture current url using useHistory in react"

0

get current url react router

import {withRouter} from 'react-router-dom';

const SomeComponent = withRouter(props => <MyComponent {...props}/>);

class MyComponent extends React.Component {
  SomeMethod () {
    const {pathname} = this.props.location;
  }
}
Posted by: Guest on May-21-2020

Code answers related to "how to capture current url using useHistory in react"

Code answers related to "Javascript"

Browse Popular Code Answers by Language