mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
22 lines
496 B
Swift
22 lines
496 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
struct ContentItemView: View {
|
|
let item: ContentItem
|
|
|
|
var body: some View {
|
|
Group {
|
|
switch item.contentType {
|
|
case .video:
|
|
VideoCell(video: item.video)
|
|
case .playlist:
|
|
ChannelPlaylistCell(playlist: item.playlist)
|
|
case .channel:
|
|
ChannelCell(channel: item.channel)
|
|
default:
|
|
PlaceholderCell()
|
|
}
|
|
}
|
|
}
|
|
}
|