import React from 'react'; import { FiX } from 'react-icons/fi'; import Button from 'components/ui/Button'; 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);