18 lines
209 B
Swift
18 lines
209 B
Swift
|
//
|
||
|
// SwUIApp.swift
|
||
|
// SwUI
|
||
|
//
|
||
|
// Created by User on 07.03.2024.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
@main
|
||
|
struct SwUIApp: App {
|
||
|
var body: some Scene {
|
||
|
WindowGroup {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|
||
|
}
|