added js backend

This commit is contained in:
2026-02-23 22:47:28 +01:00
parent 8a528d46ed
commit 3e0054a0b9
9 changed files with 904 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
//
// ContentView.swift
// new-app Watch App
//
// Created by Theis on 23.02.26.
//
import SwiftUI
struct WatchContentView: View {
var body: some View {
ScrollView {
VStack(alignment: .leading) {
Text("Lesson1")
Text("Lesson2")
}
}
}
}
#Preview {
WatchContentView()
}

View File

@@ -11,7 +11,7 @@ import SwiftUI
struct new_app_Watch_AppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
WatchContentView()
}
}
}