splits/Splits/SplitsApp.swift

22 lines
404 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
struct SplitsApp: App {
var body: some Scene {
WindowGroup {
TabViewData()
}
}
}