NotFound.jsx 329 B

123456789101112131415
  1. import React from 'react';
  2. import Typography from "@mui/material/Typography";
  3. export const NotFound = () => {
  4. return (
  5. <Typography
  6. textAlign='center'
  7. color='#000'
  8. letterSpacing='1px'
  9. variant='body1'
  10. >
  11. No results found
  12. </Typography>
  13. )
  14. }