mirror of
https://github.com/Mueller-Patrick/DHBW-Service-App.git
synced 2024-11-01 08:53:58 +00:00
21 lines
345 B
Swift
21 lines
345 B
Swift
|
//
|
||
|
// 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()
|
||
|
}
|
||
|
}
|