import React from 'react'; import withModal from 'components/modals/withModal'; import { linkify } from 'utils'; const Topic = ({ payload: { topic, channel }, onClose }) => { return ( <>

Topic in {channel}

{linkify(topic)}

); }; export default withModal({ name: 'topic' })(Topic);