import PropTypes from 'prop-types'; // material-ui import { Box, Grid } from '@mui/material'; // project import const AuthCard = Loadable(lazy(() => import('./AuthCardCustom'))); //import AuthCard from './AuthCardCustom'; // assets import Loadable from 'components/Loadable'; import { lazy } from 'react'; const AuthBackground = Loadable(lazy(() => import('assets/images/auth/AuthBackground'))); //import AuthBackground from 'assets/images/auth/AuthBackground'; // ==============================|| AUTHENTICATION - WRAPPER ||============================== // const AuthWrapperCustom = ({ children }) => ( {/* */} {children} {/* */} ); AuthWrapperCustom.propTypes = { children: PropTypes.node }; export default AuthWrapperCustom;