mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-06-02 21:50:47 +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);
|