mirror of
https://github.com/seemoo-lab/openhaystack.git
synced 2026-05-19 15:06:52 +00:00
23 lines
443 B
Swift
23 lines
443 B
Swift
//
|
|
// ContentView.swift
|
|
// OFFetchReports
|
|
//
|
|
// Created by Alex - SEEMOO on 04.03.21.
|
|
// Copyright © 2021 SEEMOO - TU Darmstadt. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
Text("Hello, World!")
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
|
}
|
|
}
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ContentView()
|
|
}
|
|
}
|