// // SplitsApp.swift // Splits // // Created by Isaac Greene on 2022-04-03. // import SwiftUI @main /// Builds the main view of the app (``TabViewData``) struct SplitsApp: App { var body: some Scene { WindowGroup { TabViewData() } } }