import React, { type PropsWithChildren } from "react"; import type { ILiveContext } from "./types"; export const LiveContext = React.createContext({}); export const LiveContextProvider: React.FC> = ({ liveProvider, children, }) => { return ( {children} ); };