import { createContext } from 'react'; const ModalContext = createContext({ component: null, props: {}, showModal: () => {}, hideModal: () => {} });