mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:52:51 +00:00
5 lines
148 B
TypeScript
5 lines
148 B
TypeScript
import { createContext } from 'react';
|
|
import { ISkeleton } from './skeleton';
|
|
|
|
export const SkeletonContext = createContext<ISkeleton>({} as any);
|