Initial multiplatform build

This commit is contained in:
Maurice Parker
2020-06-27 11:22:01 -05:00
parent 05f259da51
commit 7ceaa305e7
44 changed files with 789 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
//
// ContentView.swift
// Shared
//
// Created by Maurice Parker on 6/27/20.
// Copyright © 2020 Ranchero Software. 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()
}
}