Initial Commit

This commit is contained in:
2026-01-26 18:43:49 +01:00
commit 4291099fba
8 changed files with 447 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//
// ContentView.swift
// MultiChrono
//
// Created by Beatrice Dellacà on 26/01/26.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}