Initial Commit

This commit is contained in:
2023-04-08 13:38:12 +01:00
commit 94113e80fd
7 changed files with 81 additions and 0 deletions

17
Set/SetApp.swift Normal file
View File

@@ -0,0 +1,17 @@
//
// SetApp.swift
// Set
//
// Created by Oliver Hnát on 08.04.2023.
//
import SwiftUI
@main
struct SetApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}