dispatch/client/js/components/modals/index.js

13 lines
256 B
JavaScript
Raw Normal View History

import React, { memo } from 'react';
2019-01-23 06:34:39 +00:00
import AddChannel from 'components/modals/AddChannel';
import Confirm from 'components/modals/Confirm';
const Modals = () => (
<>
2019-01-23 06:34:39 +00:00
<AddChannel />
<Confirm />
</>
);
export default memo(Modals, () => true);