/* page-articles.jsx — the dispatch archive */
function ArticlesRoute() {
  const { toast, onBook } = useBooking();
  return (
    <React.Fragment>
      <Nav active="articles" onBook={onBook} />
      <ArticleArchive />
      <Newsletter />
      <Footer />
      {toast}
    </React.Fragment>
  );
}
ReactDOM.createRoot(document.getElementById("root")).render(<ArticlesRoute />);
