import React from 'react'; import PageContent from 'Components/Page/PageContent'; import translate from 'Utilities/String/translate'; import styles from './NotFound.css'; interface NotFoundProps { message?: string; } function NotFound(props: NotFoundProps) { const { message = translate('DefaultNotFoundMessage') } = props; return (
{message}
); } export default NotFound;