import React from 'react'; import { useTranslation } from 'react-i18next'; import { Box, Icon, Icons, Text } from 'folds'; import { NavEmptyCenter, NavEmptyLayout } from '../../../components/nav'; // Phase 1 placeholder shown when /channels/:space/ resolves on desktop with // no :roomId yet. Phase 3 wires the list, Phase 4 wires ChannelView, this // stub exists only to make the route resolve to something visible. export function ChannelPickPlaceholder() { const { t } = useTranslation(); return ( } title={ {t('Channels.pick_channel_title')} } content={ {t('Channels.pick_channel_desc')} } /> ); }