import React from 'react' import '../App.css' import { Form, Modal, Button, Row, Col, Image, Alert } from 'react-bootstrap'; import Oauth from '../components/Oauth'; import { useEffect } from 'react'; import axios from 'axios'; import { useState } from 'react'; function LoginwithSocial() { const inboxstyled = { display: 'flex', flexDirection: 'column', maxWidth: '100%', justifyContent: 'center', margin: 'auto', padding: '10px' } function loginWithKakao() { window.Kakao.Auth.authorize({ redirectUri: 'http://localhost:3000/oauth' }) } const [isLogin, setIsLogin] = useState(false) return ( LOGIN

KAKAO KAKAOHTML KAKAOPOP GOOGLE FACEBOOK
) } export default LoginwithSocial;