Initial Commit

This commit is contained in:
Chad Nelson 2025-03-08 07:20:19 -07:00
commit a098b17f71
13 changed files with 800 additions and 0 deletions

View file

@ -0,0 +1,24 @@
//
// ContentView.swift
// MSG Desktop
//
// Created by Chad Nelson on 3/8/25.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}