IceCubes/IceCubesApp/IceCubesAppApp.swift

11 lines
126 B
Swift
Raw Normal View History

import SwiftUI
@main
struct IceCubesAppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}