import { useEffect } from "react"; const NotFound: React.FC = () => { useEffect(() => { }); return ( <>
) } export default NotFound