PeopleInSpace/watchos/PeopleInSpaceWatch/PeopleInSpaceWatch WatchKit Extension/HostingController.swift
2020-01-13 11:44:14 -07:00

17 lines
362 B
Swift

//
// HostingController.swift
// PeopleInSpaceWatch WatchKit Extension
//
// Created by Neal Sanche on 2020-01-02.
// Copyright © 2020 Neal Sanche. All rights reserved.
//
import WatchKit
import Foundation
import SwiftUI
class HostingController: WKHostingController<ContentView> {
override var body: ContentView {
return ContentView()
}
}