react router refresh page code example

Example 1: how to refresh the page using react

window.location.reload(false);

Example 2: react router refresh page

location.reload();

Example 3: react router refresh page

`yarn add react-router` or `npm install react-router`

import { useHistory } from 'react-router'
const history = useHistory()
history.go(0)

Example 4: react router browser refresh

// Add the following to .htaccess file in the public folder
// NOTE: This is for Apache servers!


  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteRule . /index.html [L]

Example 5: react router refreshes page

import React from "react";
import { Link } from 'react-router-dom';

export class ToolTip extends React.Component {
  render() {
    return (
      Click Here
    )
  }
};

Tags:

Misc Example