From 7784fd286c8dfbe53f4612028826d8fdad021c88 Mon Sep 17 00:00:00 2001 From: anna Date: Fri, 12 Apr 2024 14:52:59 +0800 Subject: [PATCH] iASmart --- .../iAmSmart/FailCallback_VerifyMail/index.js | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/pages/iAmSmart/FailCallback_VerifyMail/index.js diff --git a/src/pages/iAmSmart/FailCallback_VerifyMail/index.js b/src/pages/iAmSmart/FailCallback_VerifyMail/index.js new file mode 100644 index 0000000..5c4f1f5 --- /dev/null +++ b/src/pages/iAmSmart/FailCallback_VerifyMail/index.js @@ -0,0 +1,69 @@ +// material-ui +import { + Grid, + Typography, + Button +} from '@mui/material'; +import * as React from "react"; +import { useNavigate } from "react-router-dom"; +import { FormattedMessage } from "react-intl"; +import Loadable from 'components/Loadable'; +const LoadingComponent = Loadable(React.lazy(() => import('pages/extra-pages/LoadingComponent'))); + + +// ==============================|| DASHBOARD - DEFAULT ||============================== // + +const Index = () => { + + const navigate = useNavigate() + const [onReady, setOnReady] = React.useState(false); + + React.useEffect(() => { + setOnReady(true); + }, []); + + return ( + !onReady ? + + + + + + : + + + + +
+ + + + + + + + + + + + + + +
+
+
+ {/*row 2*/} +
+ + ); +}; + +export default Index; \ No newline at end of file