ios_app_v2/yobble/Views/Tab/ChatsTab.swift
2025-10-05 04:24:43 +03:00

21 lines
340 B
Swift

//
// ChatsTab.swift
// VolnahubApp
//
// Created by cheykrym on 09/06/2025.
//
import SwiftUI
struct ChatsTab: View {
var body: some View {
VStack {
Text("Здесь будут чаты")
.font(.title)
.foregroundColor(.gray)
Spacer()
}
}
}