sdy

create ChannelContainer.js

1 +import React from "react";
2 +import { withRouter } from "react-router-dom";
3 +import ChannelPresenter from "./ChannelPresenter";
4 +
5 +export default withRouter(({ location }) => {
6 + return <ChannelPresenter />;
7 +});