5 lines
173 B
TypeScript
5 lines
173 B
TypeScript
|
import { createContext } from 'react';
|
||
|
import { ISchemaComponentContext } from './types';
|
||
|
|
||
|
export const SchemaComponentContext = createContext<ISchemaComponentContext>({});
|