Files
studystructure/StudyStructure/ContentView.swift
Felix Förtsch 316fec07d9 Initial Commit
2021-07-29 23:01:43 +02:00

22 lines
339 B
Swift

//
// ContentView.swift
// StudyStructure
//
// Created by Felix Förtsch on 29.07.21.
//
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, world!")
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}