// material-ui
import {
Grid,
Typography,
Stack,
} from '@mui/material';
import * as React from "react";
import Loadable from 'components/Loadable';
const LoadingComponent = Loadable(React.lazy(() => import('pages/extra-pages/LoadingComponent')));
import titleBackgroundImg from 'assets/images/dashboard/gazette-bar.png'
const BackgroundHead = {
backgroundImage: `url(${titleBackgroundImg})`,
width: '100%',
height: '100%',
backgroundSize: 'contain',
backgroundRepeat: 'no-repeat',
backgroundColor: '#0C489E',
backgroundPosition: 'right'
}
// ==============================|| DASHBOARD - DEFAULT ||============================== //
const Index = () => {
const [onReady, setOnReady] = React.useState(false);
React.useEffect(() => {
setOnReady(true);
}, []);
return (
!onReady ?
:
iAM Smart 成功登入
{/*row 1*/}
iAM Smart 成功登入
{/*row 2*/}
);
};
export default Index;