import React from 'react'; import PropTypes from 'prop-types'; import { Link } from 'react-router-dom'; import { useAppConfig } from '@state'; const NotFound = ({ message = 'Sorry, this page does not exist.', showGoBackButton = true }) => { const [appConfig] = useAppConfig(); const { showStudyList } = appConfig; return (