22 lines
		
	
	
		
			327 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			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()
 | 
						|
    }
 | 
						|
}
 |