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