import { Button, Typography } from '@mui/material'; import { useHistory } from 'react-router'; import { ReactComponent as LogoIcon } from 'assets/icons/logoBg.svg'; import { useStyles } from './NotFound.styles'; const NotFound = () => { const history = useHistory(); const { classes: styles } = useStyles(); const onClickHome = () => { history.push('/'); }; const onClickBack = () => { history.goBack(); }; return (