UNPKG

mediasfu-reactnative-expo

Version:

mediasfu-reactnative-expo – Expo-managed React Native WebRTC SDK for video conferencing, webinars, live streaming, broadcast, screen sharing, whiteboard, chat, recording, live subtitles, translation, and AI agent rooms on iOS, Android, and web. Prebuilt r

36 lines (35 loc) 993 B
import React from 'react'; /** * Props for the MeetingPasscodeComponent. */ export interface MeetingPasscodeComponentOptions { /** * The meeting passcode to display. Defaults to an empty string. */ meetingPasscode?: string; isDarkMode?: boolean; } /** * MeetingPasscodeComponent displays a meeting passcode in a read-only input field. * * @component * @param {Object} props - Properties for configuring the MeetingPasscodeComponent. * @param {string} props.meetingPasscode - The meeting passcode to display. * @returns {JSX.Element} The MeetingPasscodeComponent. * * @example * ```tsx * import React from 'react'; * import { MeetingPasscodeComponent } from 'mediasfu-reactnative-expo'; * * function App() { * return ( * <MeetingPasscodeComponent meetingPasscode="123456" /> * ); * } * * export default App; * ``` */ declare const MeetingPasscodeComponent: React.FC<MeetingPasscodeComponentOptions>; export default MeetingPasscodeComponent;