ios_app/Shared/ContentView.swift
2025-06-09 23:29:58 +03:00

22 lines
327 B
Swift

//
// ContentView.swift
// Shared
//
// Created by cheykrym on 09/06/2025.
//
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, world!")
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}