mirror of
https://github.com/home-assistant/iOS.git
synced 2026-02-16 10:21:16 -06:00
15 lines
276 B
Swift
15 lines
276 B
Swift
import Foundation
|
|
import Shared
|
|
import SwiftUI
|
|
|
|
final class HostingController: WKHostingController<WatchHomeView> {
|
|
override init() {
|
|
super.init()
|
|
MaterialDesignIcons.register()
|
|
}
|
|
|
|
override var body: WatchHomeView {
|
|
WatchHomeView()
|
|
}
|
|
}
|