My Page is showing blank. please help me to fix this problem
>Solution :
You already imported useParams from react-router-dom, so you need to add
const { nftId } = useParams();
instead of using match.params.nftId
Then you can put a condition like if (nftId) { your code here }


