mirror of
https://github.com/jeremysrand/ListenerApp.git
synced 2025-01-05 04:29:28 +00:00
22 lines
335 B
Swift
22 lines
335 B
Swift
|
//
|
||
|
// ContentView.swift
|
||
|
// ListenerApp
|
||
|
//
|
||
|
// Created by Jeremy Rand on 2021-07-16.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct ContentView: View {
|
||
|
var body: some View {
|
||
|
Text("Hello, world!")
|
||
|
.padding()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct ContentView_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|