summaryrefslogtreecommitdiff
path: root/src/containers/Service/ServiceContext.tsx
blob: 8f23d9ddafb382aba246416fa68377935abf2e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React from 'react';

export interface ServiceParams {
  route: string;
  name: string;
  nameSingular: string;
  tableFields: any[];
  Form: React.FC<any>;
  default: Record<string, any>;
}

const ServiceContext = React.createContext<ServiceParams>({
  route: '',
  name: '',
  nameSingular: '',
  tableFields: [],
  Form: () => null,
});

export const ServiceProvider = ServiceContext.Provider;
export default ServiceContext;