* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
import { createContext } from 'react';
|
|
|
|
const ModalContext = createContext({
|
|
component: null,
|
|
props: {},
|
|
showModal: () => {},
|
|
hideModal: () => {},
|
|
});
|