UNPKG

communication-react-19

Version:

React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)

14 lines 630 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import React from 'react'; import { Stack } from '@fluentui/react'; /** * A memoized version of local screen share component. React.memo is used for a performance * boost by memoizing the same rendered component to avoid rerendering this when the parent component rerenders. * https://reactjs.org/docs/react-api.html#reactmemo */ export const TogetherModeLayout = (props) => { const { togetherModeStreamComponent } = props; return React.createElement(Stack, null, togetherModeStreamComponent); }; //# sourceMappingURL=TogetherModeLayout.js.map