* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
import {
|
|
createConfirmationCreater,
|
|
createReactTreeMounter,
|
|
createMountPoint,
|
|
} from 'react-confirm';
|
|
import Confirmation from './Confirmation';
|
|
|
|
const mounter = createReactTreeMounter();
|
|
const createConfirmation = createConfirmationCreater(mounter);
|
|
|
|
export const MountPoint = createMountPoint(mounter);
|
|
export default createConfirmation(Confirmation);
|