cloud-dns-ios/dns/ContentView.swift
2026-04-12 18:28:47 +01:00

24 lines
378 B
Swift

//
// ContentView.swift
// dns
//
// Created by irl on 12/04/2026.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}