punchnet-macos/punchnet/Views/Network/NetworkWaitAuthView.swift
2026-01-16 17:17:53 +08:00

19 lines
316 B
Swift

//
// NetworkWaitAuthView.swift
// punchnet
//
// Created by on 2026/1/16.
//
import SwiftUI
struct NetworkWaitAuthView: View {
@Bindable var state: NetworkState
var body: some View {
Color.clear
.overlay {
Text("等待确认中")
}
}
}