Caps-iOS/Caps/CapsApp.swift

17 lines
263 B
Swift
Raw Permalink Normal View History

2022-06-10 21:20:49 +02:00
import SwiftUI
@main
struct CapsApp: App {
2022-06-21 19:38:51 +02:00
static let thumbnailImageSize: CGFloat = 60
2024-03-01 17:37:10 +01:00
let database = Database()
2022-06-10 21:20:49 +02:00
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(database)
}
}
}