mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2024-12-12 17:36:31 +01:00
17 lines
304 B
Swift
17 lines
304 B
Swift
//Made by Lumaa
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct ThreadedApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.background(Color.appBackground)
|
|
.onAppear {
|
|
HapticManager.prepareHaptics()
|
|
}
|
|
}
|
|
}
|
|
}
|