"use client";

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

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