import NotFoundImage from 'assets/NotFound'; import ROUTES from 'constants/routes'; import { defaultText } from './constant'; import { Button, Container, Text, TextContainer } from './styles'; function NotFound({ text = defaultText }: Props): JSX.Element { return ( {text} Page Not Found ); } interface Props { text?: string; } NotFound.defaultProps = { text: defaultText, }; export default NotFound;