import React from "react"; import { SimpleResource } from "../../data/SimpleResource"; export interface SimpleEditPageProps { baseUrl: string; resource: SimpleResource; filter: any; initialValues?: any; onBeforeSubmit?: (values: any) => Promise; onSuccessRedirect?: (item: any) => string; breadCrumbItems?: { key: string; title?: React.ReactNode; href?: string; active?: boolean; }[]; }