Add react-modal, replace confirm usage with it
This commit is contained in:
parent
63cf65100d
commit
0085cea5a1
17 changed files with 443 additions and 152 deletions
10
client/js/components/modals/index.js
Normal file
10
client/js/components/modals/index.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import React, { memo } from 'react';
|
||||
import Confirm from 'components/modals/Confirm';
|
||||
|
||||
const Modals = () => (
|
||||
<>
|
||||
<Confirm />
|
||||
</>
|
||||
);
|
||||
|
||||
export default memo(Modals, () => true);
|
Loading…
Add table
Add a link
Reference in a new issue