Files
swiftapp/swift/WatchApp/SocialIOWatchApp.swift
T

15 lines
259 B
Swift
Raw Normal View History

2026-04-19 16:26:38 +02:00
import SwiftUI
@main
struct SocialIOWatchApp: App {
@State private var store = WatchInboxStore()
var body: some Scene {
WindowGroup {
NavigationStack {
WatchInboxView(store: store)
}
}
}
}