mirror of
https://github.com/yJason/ClashX-Dashboard.git
synced 2026-02-04 10:02:26 +08:00
20 lines
325 B
Swift
20 lines
325 B
Swift
//
|
|
// ProxyListView.swift
|
|
// ClashX Dashboard
|
|
//
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ProxyListView: View {
|
|
var body: some View {
|
|
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
|
}
|
|
}
|
|
|
|
struct ProxyListView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ProxyListView()
|
|
}
|
|
}
|