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