yattee/Apple TV/PopularVideosView.swift
2021-06-11 23:55:31 +02:00

22 lines
490 B
Swift

import SwiftUI
struct PopularVideosView: View {
@ObservedObject private var provider = PopularVideosProvider()
@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
}
}