Files
watch-untis/watch-untis Watch App/SwiftUIView.swift
2026-02-23 22:47:21 +01:00

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()
}