SwiftUI/SwUI/SwUIApp.swift

18 lines
209 B
Swift
Raw Permalink Normal View History

2024-03-07 12:29:05 +00:00
//
// SwUIApp.swift
// SwUI
//
// Created by User on 07.03.2024.
//
import SwiftUI
@main
struct SwUIApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}