"use client";

import Layout from "@/Layout";
import ChilexpressIntegration from "@/pages/ChilexpressIntegration";

export default function ChilexpressIntegrationRoute(): React.ReactElement {
  return (
    <Layout currentPageName="ChilexpressIntegration">
      <ChilexpressIntegration />
    </Layout>
  );
}
