Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

how to pass data between components in react

// Its a three step process (react-router-dom is neccessary)

// 1 - you setup component Route in a specific way. Like this
// we will pass data from component1 to component2
import {BrowserRouter as Router, Routes, Route, Link, useParams} from 'react-router-dom';

const App = () => {
  return(
    <Router>
      <Routes>
        <Route path="/component1" element={<Component1 />} />
		<Route path="/component2/:data" element={<Component2 />} />
      </Routes>
    </Router>
  )
}

// setting up component 1
const Component1 = () => {
  let pass = "hello"
  return(
    <div>
      <Link to={"/component2/"+pass}>Click me to pass "pass"</Link>
    </div>
  )
}

// Component 2
const Component2 = () => {
  const { data } = useParams();
  return(
    <div>
      <h2>The data is: {data}</h2>
    </div>
  )
}

// That's all folks
Comment

passing data between components in react js

// Passing data via react-router

// on first component
import React from "react";
import { useNavigate } from "react-router-dom";

const Component1 = () => {
  const navigate = useNavigate();
  return (
    <button onClick={() => navigate("/store", { state: "an object or single value" })} >
    Click Me
    </button>
  );
}

// on 2nd component
import React from "react";
import { useLocation } from "react-router-dom";

const Component1 = () => {
  const data = useLocation().state;
  console.log(data)
  return (
    <div>got the data</div>
  );
}
Comment

pass data between componets in react

import React from 'react'

export default function Parent() {
  return (
    <div>
      
    </div>
  )
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript round to 8 decimal places 
Javascript :: set default date today js 
Javascript :: nodejs user input 
Javascript :: ngstyle background url angular 
Javascript :: How to use body-parser package in using npm 
Javascript :: fix footer 
Javascript :: string to object 
Javascript :: deep merge nested objects javascript 
Javascript :: chart js small bars too thin 
Javascript :: genius lyrics api 
Javascript :: dart code formatter vscode 
Javascript :: js fetch encode url 
Javascript :: javascript destructure object and rename 
Javascript :: javascript join list of string 
Javascript :: javascript response redirect 
Javascript :: scss next js 
Javascript :: conditional classname prop react 
Javascript :: xmlhttprequest 
Javascript :: chart js change axis label 
Javascript :: JavaScript Splitting a string using a regular expression 
Javascript :: unwind check after null or undefined 
Javascript :: or inside if javascript 
Javascript :: React count up on scroll 
Javascript :: javascript trigger event 
Javascript :: javascript on window resize 
Javascript :: if else dart 
Javascript :: create node js api 
Javascript :: convert json to dataframe 
Javascript :: antd datepicker set min max 
Javascript :: regex remove spaces 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =