"use client";

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

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