UNPKG

@fe6/water-pro

Version:

An enterprise-class UI design language and Vue-based implementation

9 lines 262 B
/** @format */ import { createContext, useContext } from '../../../_util/hooks/use-context'; var key = Symbol(); export function createModalContext(context) { return createContext(context, key); } export function useModalContext() { return useContext(key); }