aboutsummaryrefslogtreecommitdiff
path: root/iTexSnip/ContentView.swift
blob: ce5452599cce9aea6d99b86c20ee13ff6b47467e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  ContentView.swift
//  iTexSnip
//
//  Created by Navan Chauhan on 10/13/24.
//

import SwiftUI

struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "globe")
                .imageScale(.large)
                .foregroundStyle(.tint)
            Text("Hello, world!")
        }
        .padding()
    }
}

#Preview {
    ContentView()
}