top of page
How To Pass Data Between Pages In React?
We can pass data between pages in React in both class as well as functional components using Links v5 react-route and useNavigate, useLocation (hooks) v6 of react-router. Let’s see how we can achieve the above in the class component In PostScreen (Component) we have a Create Post link, by clicking the link we will go to the "/post-details" page with the data we passed in the state object. import React from 'react'; import { Link } from 'react-router-dom'; export default class
2 min read
bottom of page