OTOChatContainer.js 223 Bytes
import React from "react";
import OTOChatPresenter from "./OTOChatPresenter";
import { withRouter } from "react-router-dom";

export default withRouter(({ match, location, history }) => {
  return <OTOChatPresenter />;
});