JavaScript
x
15
15
1
const userdata = [
2
{
3
id:1,
4
name:"kuber",
5
phone:"8989"
6
},
7
{
8
id:2,
9
name:"sahil",
10
phone:"9696"
11
}
12
13
];
14
export default userdata
15
From this to>>> <Route path={"user/:id"} component={user} />
What code should i use in “User” component if useParams has id=1 then how to show only id 1, name kuber, phone 8989
Advertisement
Answer
In the simplest way you can do it like this:
in your User.js/jsx import the userData.
Then you can get the id from url using props.match.params.id
and then you can filter from userData from that props.match.params.id
.
Note: You need to do this inside so every time id changes it gets the user of that id
JavaScript
1
6
1
useEffect(()=>{
2
3
// your code here
4
5
},[props.match]);
6