NotFound.jsx 293 B

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