Объект TypeError (...) не является функцией React useParams

There is no useParams in the react library?
perhaps like me , you were using the wrong import.
i expect you use react-router? then you should import the useParams from there.
import { useParams } from "react"  (wrong)
import React from "react";
import { useParams } from "react-router-dom";(right)
a dum studant