UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

10 lines (9 loc) 378 B
"use client"; import { createContext, use } from "react"; //#region src/base-ui/Drawer/DrawerLayerContext.tsx const DrawerLayerContext = createContext(null); const useDrawerLayer = () => use(DrawerLayerContext); const DrawerLayerProvider = DrawerLayerContext.Provider; //#endregion export { DrawerLayerProvider, useDrawerLayer }; //# sourceMappingURL=DrawerLayerContext.mjs.map