window.location.reload(false);
() => window.location.reload()
location.reload();
//Go to link and refresh the page
<a onClick={() => {window.location.href="/something"}}>Something</a>
import React from "react";
import { Link } from 'react-router-dom';
export class ToolTip extends React.Component {
render() {
return (
<Link to="/My/Route">Click Here</Link>
)
}
};