Initial Commit

This commit is contained in:
2025-08-16 20:35:42 +08:00
commit de8ac20776
12 changed files with 776 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//
// ContentView.swift
// Jetson Media
//
// Created by Spasol Reisa on 2025/8/16.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}