1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Shared/Views/PlaceholderCell.swift

17 lines
369 B
Swift
Raw Normal View History

2022-03-27 16:19:57 +05:30
import Defaults
import SwiftUI
struct PlaceholderCell: View {
var body: some View {
2022-12-11 21:49:21 +05:30
VideoCell(id: UUID().uuidString, video: .fixture)
2022-03-27 16:19:57 +05:30
.redacted(reason: .placeholder)
}
}
struct PlaceholderCell_Previews: PreviewProvider {
static var previews: some View {
PlaceholderCell()
.injectFixtureEnvironmentObjects()
}
}