Bubble/ThreadedWatch/ThreadedWatchApp.swift

14 lines
202 B
Swift

//Made by Lumaa
import SwiftUI
@main
struct ThreadedWatch_Watch_AppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.modelData()
}
}
}