@elastic/eui
Version:
Elastic UI Component Library
23 lines (21 loc) • 839 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FormContext = void 0;
exports.useFormContext = useFormContext;
var _react = _interopRequireDefault(require("react"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
var FormContext = exports.FormContext = /*#__PURE__*/_react.default.createContext({
defaultFullWidth: false
});
function useFormContext() {
return _react.default.useContext(FormContext);
}