oncall-mobile-ios/ntfy/ContentView.swift
2022-05-13 20:09:13 -04:00

21 lines
328 B
Swift

//
// ContentView.swift
// ntfy
//
// Created by Philipp Heckel on 5/13/22.
//
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, world!")
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}