I am getting this error while running the below code
import React from 'react';
import { Link } from 'react-router-dom';
const DanimProduct = () => {
return (
<div className='mt-5'>
<Link>Hello</Link>`enter code here`
</div>
);
};
export default DanimProduct;