mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-17 07:13:01 +00:00
5 lines
146 B
TypeScript
5 lines
146 B
TypeScript
import { createContext } from 'react';
|
|
import { Skeleton } from './skeleton';
|
|
|
|
export const SkeletonContext = createContext<Skeleton>({} as any);
|