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

const ARTICLES_SAAS = window.cynixDataExt.ARTICLES.filter((a) => a.category === "saas");

ReactDOM.createRoot(document.getElementById("root")).render(
  React.createElement(CategoryPage, {
    deptId: "saas",
    deco: "効",
    quote: "便利は罪。月額の合計が家賃を超えた経営者の話。",
    articles: ARTICLES_SAAS
  })
);
