import React from 'react'; import I18n from '../../i18n'; import { ISubscription } from '../../definitions'; import Item from './Item'; const Channel = ({ room }: { room: ISubscription }) => { const { description, topic, announcement } = room; return ( <> ); }; export default Channel;