1import React from 'react'; 2 3const Redirect = ({ path }: React.PropsWithChildren<{ path: string }>) => { 4 React.useEffect(() => { 5 setTimeout(() => { 6 window.location.href = path; 7 }, 0); 8 }); 9 10 return null; 11}; 12 13export default Redirect; 14