stackpress
Version:
Incept is a content management framework.
15 lines (14 loc) • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const react_1 = require("react");
const ModalContext = (0, react_1.createContext)({
_title: '',
_className: '',
_body: undefined,
opened: false,
title: () => { },
className: () => { },
body: () => { },
open: () => { },
});
exports.default = ModalContext;