Code style change

This commit is contained in:
Arkadiusz Fal
2022-08-13 16:46:45 +02:00
parent 661de78ab3
commit c51b9dd8e8
8 changed files with 35 additions and 40 deletions

View File

@@ -7,12 +7,12 @@ struct ContentItemView: View {
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)
case .video:
VideoCell(video: item.video)
default:
PlaceholderCell()
}