mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 15:27:18 +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);
|