FlurSchnaps-iOS/FlurSchnaps/ContentView.swift

22 lines
324 B
Swift
Raw Normal View History

2022-06-04 11:45:41 +02:00
//
// ContentView.swift
// FlurSchnaps
//
// Created by CH on 04.06.22.
//
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, world!")
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}