import { Input, List } from 'antd'; import { ChannelsWrapper } from './Channels.styled'; import { SearchOutlined } from '@ant-design/icons'; import { useChannels } from './useChannels.hook'; import { ChannelItem } from './channelItem/ChannelItem'; export function Channels() { const { state, actions } = useChannels(); return (
( )} />
); }