Initial Commit

This commit is contained in:
Maximilian Roider
2025-11-14 01:49:44 +01:00
commit 73bee649f3
8 changed files with 514 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//
// ContentView.swift
// Clemens Playground
//
// Created by Maximilian Roider on 14.11.25.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}