UNPKG

@zezosoft/react-player

Version:

A lightweight and customizable video player by Zezosoft, built for seamless streaming with advanced controls, adaptive playback, and modern UI. Perfect for web and React applications.

9 lines (8 loc) 252 B
import React from "react"; import { VideoError } from "../../store/types/StoreTypes"; interface ErrorOverlayProps { error: VideoError; onRetry: () => void; } declare const ErrorOverlay: React.FC<ErrorOverlayProps>; export default ErrorOverlay;