mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-01-06 05:54:19 +01:00
14 lines
198 B
Swift
14 lines
198 B
Swift
|
//Made by Lumaa
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct AppDelegate: View {
|
||
|
var body: some View {
|
||
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#Preview {
|
||
|
AppDelegate()
|
||
|
}
|