Files
WerkoutIOS/Werkout_watch Watch App/ContentView.swift
Trey t 0b477bc182 WIP
2023-07-08 11:48:14 -05:00

27 lines
443 B
Swift

//
// ContentView.swift
// Werkout_watch Watch App
//
// Created by Trey Tartt on 6/22/23.
//
import SwiftUI
struct ContentView: View {
var body: some View {
TabView {
MainWatchView()
WatchControlView()
}
.padding()
.tabViewStyle(PageTabViewStyle())
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}