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