Routing in Chrome Extension written in React
问题 I want 2 pages in my Chrome extension. For example: first(default) page with list of users and second with actions for this user. I want to display second page by clicking on user( ClickableListItem in my case). I use React and React Router. Here the component in which I have: class Resents extends React.Component { constructor(props) { super(props); this.handleOnClick = this.handleOnClick.bind(this); } handleOnClick() { console.log('navigate to next page'); const path = '/description-view';