2022-04-12 04:18:43 +08:00
|
|
|
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';
|
|
|
|
|
2022-04-19 04:05:26 +08:00
|
|
|
const LocalEchoContainer = (props) => <LocalEcho {...props} />;
|
2022-04-12 04:18:43 +08:00
|
|
|
|
|
|
|
export default withTracker(() => ({
|
|
|
|
initialHearingState: Service.localEchoInitHearingState,
|
|
|
|
}))(LocalEchoContainer);
|