Initial Commit

This commit is contained in:
Isaac Greene 2022-04-09 22:38:57 -04:00
commit 15389248af
17 changed files with 1131 additions and 0 deletions

17
Splits/SplitsApp.swift Normal file
View file

@ -0,0 +1,17 @@
//
// SplitsApp.swift
// Splits
//
// Created by Isaac Greene on 4/3/22.
//
import SwiftUI
@main
struct SplitsApp: App {
var body: some Scene {
WindowGroup {
TabViewData()
}
}
}