18 lines
268 B
Swift
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()
|
|
}
|
|
}
|
|
}
|