Restructure project folders

This commit is contained in:
Scarriffle
2026-05-17 08:45:37 +02:00
parent 652cfc4cf4
commit 069f8bac2d
80 changed files with 6102 additions and 547 deletions

View File

@@ -0,0 +1,16 @@
import SwiftUI
struct ContentView: View {
@Environment(AppState.self) private var app
var body: some View {
Group {
if app.auth.isLoggedIn {
MainView()
} else {
LoginView()
}
}
.frame(minWidth: 900, minHeight: 600)
}
}