Bubble/ThreadedWatch/ThreadedWatchApp.swift

21 lines
330 B
Swift

//Made by Lumaa
import SwiftUI
@main
struct ThreadedWatch_Watch_AppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.modelData()
}
}
}
extension View {
func modelData() -> some View {
self
.modelContainer(for: LoggedAccount.self)
}
}