react html router link code example
Example 1: react router Link does work
import { Link } from 'react-router-dom';
Example 2: react router link
import React from "react";
import ReactDOM from "react-dom";
import { createBrowserHistory } from "history";
const customHistory = createBrowserHistory();
ReactDOM.render(<Router history={customHistory} />, node);