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
14 lines • 691 B
JavaScript
import React from 'react';
import MainContainerComponent from '../../components/displayComponents/MainContainerComponent';
import { getModernColors, resolveIsDarkMode } from '../core/modernTheme';
export const ModernMainContainerComponent = (props) => {
const colors = getModernColors(resolveIsDarkMode(props));
return (<MainContainerComponent {...props} backgroundColor={props.backgroundColor ?? colors.roomBackground} style={[
{
backgroundColor: props.backgroundColor ?? colors.roomBackground,
},
props.style,
]}/>);
};
export default ModernMainContainerComponent;
//# sourceMappingURL=ModernMainContainerComponent.js.map