15 lines
259 B
Swift
15 lines
259 B
Swift
|
|
import SwiftUI
|
||
|
|
|
||
|
|
@main
|
||
|
|
struct SocialIOWatchApp: App {
|
||
|
|
@State private var store = WatchInboxStore()
|
||
|
|
|
||
|
|
var body: some Scene {
|
||
|
|
WindowGroup {
|
||
|
|
NavigationStack {
|
||
|
|
WatchInboxView(store: store)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|