e0bda16c06
Address linter warnings before any further changes in that area
11 lines
403 B
JavaScript
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);
|