import { createContext } from 'react' import { Schema } from './schema' import { ISchemaFormRegistry, ISchemaFieldContextProps } from '../types' export const FormComponentsContext = createContext(null) export const FormExpressionScopeContext = createContext({}) export const SchemaFieldPropsContext = createContext( null ) export const FormSchemaContext = createContext(null)