bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/local-echo/container.jsx
prlanzarin e0bda16c06 refactor(audio): linter pass over local echo/volume meter
Address linter warnings before any further changes in that area
2022-04-18 20:05:26 +00:00

11 lines
403 B
JavaScript

import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import Service from '/imports/ui/components/audio/service';
import LocalEcho from '/imports/ui/components/audio/local-echo/component';
const LocalEchoContainer = (props) => <LocalEcho {...props} />;
export default withTracker(() => ({
initialHearingState: Service.localEchoInitHearingState,
}))(LocalEchoContainer);