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

const ARTICLES_RSV = window.cynixDataExt.ARTICLES.filter((a) => a.category === "reservation");

ReactDOM.createRoot(document.getElementById("root")).render(
  React.createElement(CategoryPage, {
    deptId: "rsv",
    deco: "店",
    quote: "現場が回らなければ、どんな高機能も無価値です。",
    articles: ARTICLES_RSV
  })
);
