Bubble/ThreadedWatch/ThreadedWatchApp.swift

21 lines
330 B
Swift
Raw Normal View History

//Made by Lumaa
import SwiftUI
@main
struct ThreadedWatch_Watch_AppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.modelData()
}
}
}
2024-07-05 21:06:15 +02:00
extension View {
func modelData() -> some View {
self
.modelContainer(for: LoggedAccount.self)
}
}