import React, { useContext } from 'react'; import { HMSHLSPlayer } from '@100mslive/hls-player'; type IHMSPlayerContext = { hlsPlayer?: HMSHLSPlayer; }; export const HMSPlayerContext = React.createContext({ hlsPlayer: undefined, }); export const useHMSPlayerContext = () => { const context = useContext(HMSPlayerContext); return context; };