Changed file structure

This commit is contained in:
2020-12-21 20:28:01 +01:00
committed by Patrick Müller
parent fcf7d97764
commit bdc3560668
13 changed files with 109 additions and 96 deletions
+20
View File
@@ -0,0 +1,20 @@
//
// HomeView.swift
// DHBW-Service
//
// Created by Patrick Müller on 21.12.20.
//
import SwiftUI
struct HomeView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct HomeView_Previews: PreviewProvider {
static var previews: some View {
HomeView()
}
}