Snai3i-LandingPage-FormBuilder / frontend / src / pages / StormCourse / index.tsx
index.tsx
Raw
import useStorm from "@/hooks/useStorm";
import StormFormAlertDialog from "./components/AlertDialog";

const StormCourse = () => {
  const { access } = useStorm();

  //   if (!access) {
  //     return <StormAccessForm />;
  //   }
  return (
    <>
      <StormFormAlertDialog open={!access} />
      <iframe
        src="/STORM-Course/index.html"
        className="w-full h-[100vh] block"
        title="SCORM Content"
      />
    </>
  );
};

export default StormCourse;