yattee/Apple TV/SubscriptionsView.swift

22 lines
495 B
Swift
Raw Normal View History

2021-06-11 22:49:42 +00:00
import SwiftUI
struct SubscriptionsView: View {
@ObservedObject private var provider = SubscriptionVideosProvider()
@ObservedObject var state: AppState
@Binding var tabSelection: TabSelection
var body: some View {
VideosView(state: state, tabSelection: $tabSelection, videos: videos)
.task {
async {
provider.load()
}
}
}
var videos: [Video] {
return provider.videos
}
}