import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { ListCurrencyConversionTable } from "./_components/list-currency-conversion-table/table";

export default function CurrencyConversionPage() {
  return (
    <CustomerPageShell>
      <ListCurrencyConversionTable />
    </CustomerPageShell>
  );
}
