aboutsummaryrefslogtreecommitdiff
path: root/LibreEdit/ContentView.swift
blob: 3d5fcf64124887d085b8523a9d635d2a564fc970 (plain) (blame)
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
//  LibreEdit
//
//  Created by Christian Cleberg on 2024-01-13.
//

import SwiftUI

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

#Preview {
    ContentView()
}