MCPcopy Create free account
hub / github.com/CodeWithHarry/Sigma-Web-Dev-Course / User

Function User

Video 115/src/components/User.jsx:4–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import { useParams } from 'react-router-dom'
3
4const User = () => {
5 const params = useParams()
6 return (
7 <div>
8 I am user {params.username}
9 </div>
10 )
11}
12
13export default User

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected