import { VideoPlayer } from "@scandic-hotels/design-system/VideoPlayer" import type { VideoBlock } from "@scandic-hotels/trpc/types/blocks" interface VideoBlockProps extends Pick {} export function VideoBlock({ video }: VideoBlockProps) { if (!video) { return null } return }