"use client";

import { Suspense } from "react";
import RegistrationOtpCodePage from "./component/RegistrationOtpCodePage";

export default function Page() {
  return (
    <Suspense fallback={null}>
      <RegistrationOtpCodePage />
    </Suspense>
  );
}
