Files
LockInBroMacOS/LockInBro/ContentView.swift

25 lines
386 B
Swift
Raw Normal View History

2026-03-28 14:53:40 -04:00
//
// ContentView.swift
// LockInBro
//
// Created by Joy Zhuo on 3/28/26.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}