18 lines
214 B
Swift
18 lines
214 B
Swift
//
|
|
// SetApp.swift
|
|
// Set
|
|
//
|
|
// Created by Oliver Hnát on 08.04.2023.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SetApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|