22 lines
334 B
Swift
22 lines
334 B
Swift
//
|
|
// ContentView.swift
|
|
// HthikPreviews
|
|
//
|
|
// Created by Hthik on 4/13/23.
|
|
// Copyright © 2024 Hthik
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
Text("Hello, World!")
|
|
}
|
|
}
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ContentView()
|
|
}
|
|
}
|