]> git.drewedgar.com - snap.git/blob - snap/ContentView.swift
Initial Commit
[snap.git] / snap / ContentView.swift
1 //
2 //  ContentView.swift
3 //  snap
4 //
5 //  Created by Drew Edgar on 16/04/2026.
6 //
7
8 import SwiftUI
9
10 struct ContentView: View {
11     var body: some View {
12         VStack {
13             Image(systemName: "globe")
14                 .imageScale(.large)
15                 .foregroundStyle(.tint)
16             Text("Hello, world!")
17         }
18         .padding()
19     }
20 }
21
22 #Preview {
23     ContentView()
24 }