ios_app/Shared/Views/Tab/ChatsTab.swift
2025-07-25 01:50:56 +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()
}
}
}