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