import { Link } from 'react-router-dom'; // material-ui import { useTheme } from '@mui/material/styles'; import { Divider, Grid, Stack, Typography, useMediaQuery } from '@mui/material'; // project imports import AuthWrapper from '../AuthWrapper'; import AuthCardWrapper from '../AuthCardWrapper'; import AuthLogin from '../AuthForms/AuthLogin'; import Logo from 'ui-component/Logo'; // ================================|| AUTH3 - LOGIN ||================================ // const Login = () => { const theme = useTheme(); const matchDownSM = useMediaQuery(theme.breakpoints.down('md')); return ( 登录 注册 ); }; export default Login;