blob: 329fb1206ec470972120640871db6383a65dd0b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import React from 'react'
export function VideoPlayerProvider({children}: {children: React.ReactNode}) {
return children
}
export function useVideoPlayer() {
throw new Error('useVideoPlayer must not be used on web')
}
|