lonelyradio/platform/swiftui/monoclient/monoclientApp.swift

18 lines
229 B
Swift
Raw Normal View History

//
// monoclientApp.swift
// monoclient
//
// Created by ivabus on 03.03.2024.
//
import SwiftUI
@main
struct monoclientApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}