Files
singlechat/ios/YpChat/ContentView.swift
Torsten Schulz (local) bfe28a25fa
All checks were successful
Deploy SingleChat / deploy (push) Successful in 40s
android app, extension of stats
2026-08-10 14:03:34 +02:00

13 lines
172 B
Swift
Executable File

import SwiftUI
struct ContentView: View {
var body: some View {
YpChatRoot()
}
}
#Preview {
ContentView()
.environmentObject(AppServices())
}