15 lines
315 B
JavaScript
Raw Normal View History

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