UNPKG

@daily-co/daily-react

Version:

Daily React makes it easier to integrate [@daily-co/daily-js](https://www.npmjs.com/package/@daily-co/daily-js) in React applications.

10 lines (7 loc) 290 B
import { Props, useCallInstance } from './useCallInstance'; type CallObjectProps = Omit<Props, 'parentEl'>; /** * Helper hook to maintain custom callObject instances in React codebases. */ export const useCallObject = (props: CallObjectProps) => useCallInstance('callObject', props);