how to refresh the page using react
window.location.reload(false);
how to refresh the page using react
window.location.reload(false);
react router refresh page
location.reload();
react router refresh page
`yarn add react-router` or `npm install react-router`
import { useHistory } from 'react-router'
const history = useHistory()
history.go(0)
react router refreshes page
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>
)
}
};
react router browser refresh
// Add the following to .htaccess file in the public folder
// NOTE: This is for Apache servers!
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us