13 lines
172 B
Swift
Executable File
13 lines
172 B
Swift
Executable File
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
YpChatRoot()
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
ContentView()
|
|
.environmentObject(AppServices())
|
|
}
|