Initial Commit
This commit is contained in:
commit
1612ed099c
7 changed files with 433 additions and 0 deletions
24
dns/ContentView.swift
Normal file
24
dns/ContentView.swift
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
//
|
||||
// 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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue