blob: c03541765a28e26e50e86711bb967fd660455c31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import React from 'react';
import { FormikProps } from 'formik';
export interface ServiceParams {
route: string;
name: string;
nameSingular: string;
tableFields: any[];
default: Record<string, any>;
Form?: React.FC<FormikProps>;
}
const ServiceContext = React.createContext<ServiceParams>({
route: '',
name: '',
nameSingular: '',
tableFields: [],
default: {},
});
export const ServiceProvider = ServiceContext.Provider;
export default ServiceContext;
|