MyOrdersPage.jsx 421 B

123456789101112131415
  1. import Breadcrumb from "../components/Breadcrumbs";
  2. import {useMediaQuery} from "@mui/material";
  3. const MyOrdersPage = () => {
  4. const matches = useMediaQuery('(max-width:768px)');
  5. return (
  6. <>
  7. <Breadcrumb links={['My orders']} />
  8. <main style={{backgroundColor: "#f3f3f3", padding: matches ? "20px 0" : "50px 0"}}>
  9. </main>
  10. </>
  11. )
  12. }
  13. export default MyOrdersPage