19 lines
273 B
Swift
19 lines
273 B
Swift
//
|
|
// SwiftUIView.swift
|
|
// watch-untis Watch App
|
|
//
|
|
// Created by Theis on 23.02.26.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct SwiftUIView: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
SwiftUIView()
|
|
}
|