17 lines
362 B
Swift
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()
|
|
}
|
|
}
|