17 lines
210 B
Swift
17 lines
210 B
Swift
//
|
|
// SplitsApp.swift
|
|
// Splits
|
|
//
|
|
// Created by Isaac Greene on 4/3/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SplitsApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
TabViewData()
|
|
}
|
|
}
|
|
}
|