UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

10 lines (9 loc) 254 B
import React from 'react'; export interface ContextType { siderHook: { addSider: (id: string) => void; removeSider: (id: string) => void; }; } declare const LayoutContext: React.Context<ContextType>; export default LayoutContext;