metatext-app-ios-iphone-ipad/Shared/ContentView.swift

21 lines
319 B
Swift
Raw Normal View History

2020-07-19 04:06:12 +02:00
//
// ContentView.swift
// Shared
//
// Created by Justin Mazzocchi on 7/18/20.
//
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, world!").padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}