Files
HKSingleParty/99_references/voyager-main/ios/App/VoyagerWatch Watch App/VoyagerWatchApp.swift
2025-05-28 09:55:51 +08:00

20 lines
306 B
Swift

//
// VoyagerWatchApp.swift
// VoyagerWatch Watch App
//
// Created by Alexander Harding on 8/3/23.
//
import SwiftUI
@main
struct VoyagerWatch_Watch_AppApp: App {
var body: some Scene {
WindowGroup {
NavigationView {
HomeView()
}
}
}
}