Answers for "react how to get url"

2

get url react

window.location.href
Posted by: Guest on April-15-2020
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 "Javascript"

Browse Popular Code Answers by Language