ghostty/macos/Sources/ContentView.swift
Mitchell Hashimoto 8fedbf84d4 macos: use xcodeproj
2023-02-19 10:44:53 -08:00

20 lines
394 B
Swift

import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
}
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}