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