7514066fc3
* move settings * remove meteor cache files
11 lines
351 B
JavaScript
11 lines
351 B
JavaScript
import React from 'react';
|
|
import LocalEcho from '/imports/ui/components/audio/local-echo/component';
|
|
|
|
const LocalEchoContainer = (props) => {
|
|
const { initialHearingState } = window.meetingClientSettings.public.media.localEchoTest;
|
|
|
|
return <LocalEcho {...props} initialHearingState={initialHearingState} />;
|
|
};
|
|
|
|
export default LocalEchoContainer;
|