splits/Splits/SplitsApp.swift
2022-08-08 17:41:07 -04:00

18 lines
268 B
Swift

//
// 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()
}
}
}