mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-02-01 11:07:09 +01:00
21 lines
330 B
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)
|
|
}
|
|
}
|