kanno927's picture
feature(#134): finish UI Implementation for general chat, search images and contacts in Apple Watch
17afd55
raw
history blame contribute delete
246 Bytes
import SwiftUI
struct MainView: View {
var body: some View {
NavigationView {
ChatView()
}
}
}
struct MainView_Previews: PreviewProvider {
static var previews: some View {
MainView()
}
}