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

15 lines
315 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';
2019-01-25 02:57:58 +00:00
import Topic from 'components/modals/Topic';
const Modals = () => (
<>
2019-01-23 06:34:39 +00:00
<AddChannel />
<Confirm />
2019-01-25 02:57:58 +00:00
<Topic />
</>
);
export default memo(Modals, () => true);