CategoryContainer.js 230 Bytes
import React from "react";
import CategoryPresenter from "./CategoryPresenter";
import { withRouter } from "react-router-dom";

export default withRouter(({ location }) => {
  return <CategoryPresenter location={location} />;
});