18 lines
238 B
Swift
18 lines
238 B
Swift
//
|
|
// VikunjaAppApp.swift
|
|
// VikunjaApp
|
|
//
|
|
// Created by Justin Schwegmann on 13.03.26.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct VikunjaAppApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|