Link are helpfull for move one page to another without page refresh.
import React from "react"
import { Link } from "react-router-dom"
const App = () => {
return (
<div>
<h1>My React App</h1>
<Link to="/about">Go to About Page</Link>
</div>
);
};
export default App;
© www.thecoderjob.com. All Rights Reserved. Designed by HTML Codex