Caps-iOS/Caps/CapsApp.swift

18 lines
326 B
Swift
Raw Normal View History

2022-06-10 21:20:49 +02:00
import SwiftUI
#warning("TODO: Add colors")
#warning("TODO: Grid view")
@main
struct CapsApp: App {
let database = Database(server: URL(string: "https://christophhagen.de/caps")!)
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(database)
}
}
}