import { FC, ReactNode } from 'react'; import { PipControls as PipControlsComponent } from '../components/pip-controls/PipControls'; import { PIPControlsContext } from './pipControls'; interface PIPContextProviderProps { PIPControls?: FC; children: ReactNode; } /** Keep highlights in a context to distribute them to UI Controls * @category ContextProvider */ export const PIPContextProvider: FC = ({ PIPControls = PipControlsComponent, children, }) => { return ( {children} ); };