tav-ui
Version:
13 lines (10 loc) • 333 B
JavaScript
import { createContext, useContext } from '../../../../hooks/core/useContext2.mjs';
const key = Symbol();
function createFormContext(context) {
return createContext(context, key);
}
function useFormContext() {
return useContext(key);
}
export { createFormContext, useFormContext };
//# sourceMappingURL=useFormContext2.mjs.map