feat(mobile): add MobileSpacesScreen with space strip and channel list

This commit is contained in:
Jannis Braun
2026-03-17 15:35:53 +01:00
parent 8463ca9ba8
commit eac4e5f5eb
2 changed files with 361 additions and 1 deletions
@@ -13,8 +13,8 @@ const PlaceholderScreen = ({ label }: { label: string }) => (
</div>
);
import { MobileSpacesScreen } from './MobileSpacesScreen';
// These will be replaced with real imports as each task is completed:
const MobileSpacesScreen = () => <PlaceholderScreen label="Spaces" />;
const MobileDmsScreen = () => <PlaceholderScreen label="DMs" />;
const MobileYouScreen = () => <PlaceholderScreen label="You" />;
const MobileChatScreen = ({ params: _params }: { params?: Record<string, string> }) => <PlaceholderScreen label="Chat" />;