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

const ARTICLES_DOMAIN = window.cynixDataExt.ARTICLES.filter((a) => a.category === "domain-ssl");

ReactDOM.createRoot(document.getElementById("root")).render(
  React.createElement(CategoryPage, {
    deptId: "domain",
    deco: "信",
    quote: "信頼の最初の3,000円。それが、Web立ち上げの境界線。",
    articles: ARTICLES_DOMAIN
  })
);
