import React from 'react' import { useState } from 'react'; import { Button, Form, Image, Row, ButtonGroup, Modal, Dropdown, Col } from 'react-bootstrap'; import { Link, useHistory } from 'react-router-dom'; import '../App.css' import LoginwithSocial from '../pages/LoginwithSocial'; import { isLogined, isOauth } from '../utils/Auth'; import LocalCode from '../components/LocalCode'; // import { isOauthChecked } from './../utils/Auth'; import Oauth, { checkAuth, kakaoLogout, unlinkApp } from './../utils/Oauth'; function MainLayer() { const history = useHistory() const boxstyled = { border: 'solid', color: 'rgba(195, 195, 195, 0.753)', borderRadius: '20px', borderWidth: '3px', marginBottom: '1em', width: '100%', backgroundSize: 'contain', margin: 'auto', textDecorationColor: 'none' } const btnstyled = { background: 'rgb(110, 189, 142)', margin: '1px', display: 'flex', justifyContent: 'center', maxWidth: '100%', borderWidth: '2px', borderColor: 'rgba(195, 195, 195, 0.753)', borderRadius: '20px', textDecorationColor: 'none', color: 'white' } const [logshow, setLogshow] = useState(false); const kakao_accToken = localStorage.getItem('Kakao_token') return ( <> EUE {kakao_accToken ? //true : //false } setLogshow(false)} aria-labelledby="example-modal-sizes-title-sm" > {!kakao_accToken ? : } | ); } export default MainLayer