about summary refs log tree commit diff
path: root/src/view/com/composer/videos/VideoTranscodeBackdrop.web.tsx
blob: 9b580fdf2a8d412c14dbac27d5a95e43e38977dd (plain) (blame)
1
2
3
4
5
6
7
import React from 'react'

export function VideoTranscodeBackdrop({uri}: {uri: string}) {
  return (
    <video src={uri} style={{flex: 1, filter: 'blur(10px)'}} muted autoPlay />
  )
}