21 lines
340 B
Swift
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()
|
|
}
|
|
}
|
|
}
|