MainPage.jsx 205 B

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