EmployeeDirectory-SwiftUI/EmployeeDirectory/ContentView.swift
2025-03-03 16:48:17 -06:00

25 lines
395 B
Swift

//
// ContentView.swift
// EmployeeDirectory
//
// Created by Matt Bruce on 3/3/25.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}