import React from 'react' import '../App.css' import { Form, Modal, Button, Row, Col, Image, Alert, Card } from 'react-bootstrap'; import Oauth, { LoginWithKakao } from '../utils/Oauth'; import { useEffect } from 'react'; import axios from 'axios'; import { useState } from 'react'; function LoginComp() { const cardstyled = { margin: 'auto', padding: '1em', display: 'flex', justifyContent: 'center', width: '100%', borderWidth: '3px', borderRadius: '20px', borderColor: 'rgb(110, 189, 142)', color: '#04AB70' } const inboxstyled = { display: 'flex', flexDirection: 'column', maxWidth: '80%', justifyContent: 'center', margin: 'auto', padding: '10px' } return ( LOGIN Log in with your social media account or email address

OR
{/* 세미콜론이 붙으면 최상단 이동 x */} KAKAO
) } export default LoginComp;