/* global React, ReactDOM, window */
const CategoryPage = window.cynixCategoryPage;

const ARTICLES_EC = window.cynixDataExt.ARTICLES.filter((a) => a.category === "ec");

ReactDOM.createRoot(document.getElementById("root")).render(
  React.createElement(CategoryPage, {
    deptId: "ec",
    deco: "売",
    quote: "起業1年目で見た、現実的な成長曲線。月商10万円・100万円の壁。",
    articles: ARTICLES_EC
  })
);
