sdy

create CategoryContainer.js

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