테스트

This commit is contained in:
익희 김 2025-02-24 10:47:56 +09:00
parent 2143545db9
commit c601d38889
2 changed files with 3 additions and 2 deletions

View File

@ -51,7 +51,6 @@ export default function Featured() {
> >
View More View More
</Button> </Button>
<Button onClick={window.open('http://pf.kakao.com/_PrwzG/chat', '_blank')}>kakao</Button>
</Stack> </Stack>
{!isLoading && !Boolean(data?.data.length) ? ( {!isLoading && !Boolean(data?.data.length) ? (

View File

@ -28,7 +28,8 @@ import {
FormControl, FormControl,
FormControlLabel, FormControlLabel,
Select, Select,
MenuItem MenuItem,
Button
} from '@mui/material'; } from '@mui/material';
import { LoadingButton } from '@mui/lab'; import { LoadingButton } from '@mui/lab';
// icons // icons
@ -204,6 +205,7 @@ export default function LoginForm() {
</Typography> </Typography>
</Form> </Form>
</FormikProvider> </FormikProvider>
<Button onClick={window.open('http://pf.kakao.com/_PrwzG/chat', '_blank')}>kakao</Button>
</> </>
); );
} }