punchnet-macos/punchnet/Views/RootView.swift
2026-03-09 18:48:14 +08:00

27 lines
402 B
Swift

//
// RootView.swift
// punchnet
//
// Created by on 2026/1/19.
//
import SwiftUI
struct RootView: View {
@Environment(UserContext.self) var userContext
var body: some View {
Group {
if userContext.isLogined {
NetworkView()
} else {
LoginRootView()
}
}
}
}
#Preview {
RootView()
}