splits/Splits/SplitsApp.swift

23 lines
458 B
Swift

//
// 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
/// Builds the main view of the app (``TabViewData``)
struct SplitsApp: App {
var body: some Scene {
WindowGroup {
TabViewData()
}
}
}