sdy

udpate OTOChat container

import React from "react";
import OTOChatPresenter from "./OTOChatPresenter";
import { withRouter } from "react-router-dom";
export default () => {
export default withRouter(({ match, location, history }) => {
return <OTOChatPresenter />;
};
});
......