Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

typeerror object(...) is not a function 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)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #typeerror #function #react #useParams
ADD COMMENT
Topic
Name
4+3 =