UNPKG

stackpress

Version:

Incept is a content management framework.

13 lines (12 loc) 276 B
import { createContext } from 'react'; const ModalContext = createContext({ _title: '', _className: '', _body: undefined, opened: false, title: () => { }, className: () => { }, body: () => { }, open: () => { }, }); export default ModalContext;