import React, { ReactElement } from 'react'; import LayoutAuthenticated from '../../layouts/Authenticated'; import { fetch } from '../../stores/grant_evaluations/grant_evaluationsSlice'; import EntityRecordViewPage from '../../components/EntityPage/EntityRecordViewPage'; const GrantEvaluationsView = () => ( `/grant_evaluations/grant_evaluations-edit/?id=${id ?? ''}`} /> ); GrantEvaluationsView.getLayout = function getLayout(page: ReactElement) { return {page}; }; export default GrantEvaluationsView;