Initial Commit

This commit is contained in:
2026-03-13 19:32:20 +01:00
commit 4aa0d808ac
8 changed files with 447 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
//
// VikunjaAppApp.swift
// VikunjaApp
//
// Created by Justin Schwegmann on 13.03.26.
//
import SwiftUI
@main
struct VikunjaAppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}