metatext/Shared/ContentView.swift
Justin Mazzocchi db27aaa206
Configuration
2020-07-18 19:12:32 -07:00

16 lines
287 B
Swift

// Copyright © 2020 Metabolist. All rights reserved.
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, world!").padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}