Something went wrong. Try again.
Bluesky app fork with some witchin' additions 💫
Something went wrong. Try again.
TSX
at main
1234567891011121314151617181920212223242526272829import {type QueryClient} from '@tanstack/react-query'
import {atoms as a, flattenToCSS} from '#/alf'
export function clearThumbnailCache(_queryClient: QueryClient) { // no-op on web}
export function VideoTranscodeBackdrop({uri}: {uri: string}) { return ( <video src={uri} style={flattenToCSS([ a.absolute, a.inset_0, a.h_full, a.w_full, { objectFit: 'cover', filter: 'blur(15px)', transform: 'scale(1.1)', // hide blur edges }, ])} muted playsInline /> )}