14 lines
261 B
Swift
14 lines
261 B
Swift
//
|
|
// HostingController.swift
|
|
// PeopleInSpaceWatch WatchKit Extension
|
|
//
|
|
|
|
import WatchKit
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
class HostingController: WKHostingController<ContentView> {
|
|
override var body: ContentView {
|
|
return ContentView()
|
|
}
|
|
}
|