mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
16 lines
336 B
Swift
16 lines
336 B
Swift
import Defaults
|
|
import SwiftUI
|
|
|
|
struct PlaceholderListItem: View {
|
|
var body: some View {
|
|
VideoBanner(id: UUID().uuidString, video: .fixture)
|
|
.redacted(reason: .placeholder)
|
|
}
|
|
}
|
|
|
|
struct PlaceholderListItem_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
PlaceholderListItem()
|
|
}
|
|
}
|