mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
22 lines
488 B
Swift
22 lines
488 B
Swift
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] {
|
|
provider.videos
|
|
}
|
|
}
|