// // SplitsApp.swift // Splits // // Created by Isaac Greene on 4/3/22. // import SwiftUI // this file will not have comments. // this code is considered simple enough to be // human-readable without aid, as long as // the reader has a basic understanding of // Swift and/or SwiftUI. @main struct SplitsApp: App { var body: some Scene { WindowGroup { TabViewData() } } }