MainPage.jsx 178 B

1234567891011
  1. import {Redirect} from "react-router-dom";
  2. const MainPage = () => {
  3. return (
  4. <>
  5. <Redirect to={'/catalog'}/>
  6. </>
  7. )
  8. }
  9. export default MainPage