mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 13:40:41 +00:00
6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
import { createContext } from 'react';
|
|
|
|
const context = createContext({});
|
|
window.__appContext = context;
|
|
export default context;
|