18 lines
340 B
Swift
18 lines
340 B
Swift
//
|
|
// HostingController.swift
|
|
// Switch WatchKit Extension
|
|
//
|
|
// Created by Within on 2019-09-21.
|
|
// Copyright © 2019 Within. All rights reserved.
|
|
//
|
|
|
|
import WatchKit
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
class HostingController: WKHostingController<ContentView> {
|
|
override var body: ContentView {
|
|
return ContentView()
|
|
}
|
|
}
|