This repository has been archived on 2025-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
ios_app/Shared/Views/ContactsTab.swift
2025-06-10 05:23:59 +03:00

25 lines
464 B
Swift

//
// ContactsTab.swift
// VolnahubApp
//
// Created by cheykrym on 09/06/2025.
//
import SwiftUI
struct ContactsTab: View {
var body: some View {
NavigationView {
VStack {
Text("Контакты")
.font(.largeTitle)
.bold()
.padding()
Spacer()
}
.navigationTitle("Контакты")
}
}
}