mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-27 21:28:14 +00:00
5 lines
167 B
TypeScript
5 lines
167 B
TypeScript
import { createContext } from 'react';
|
|
import { BuiltinSimulatorHost } from './host';
|
|
|
|
export const SimulatorContext = createContext<BuiltinSimulatorHost>({} as any);
|