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

const ARTICLES_AI = window.cynixDataExt.ARTICLES.filter((a) => a.category === "ai-tools");

ReactDOM.createRoot(document.getElementById("root")).render(
  React.createElement(CategoryPage, {
    deptId: "ai",
    deco: "知",
    quote: "流行りではなく、定着するAI。Naoto と 春香 のダブル監修。",
    articles: ARTICLES_AI
  })
);
