import React from 'react'
import { useState } from 'react';
import { Button, Form, Image, Row, ButtonGroup, Modal, Dropdown, Col } from 'react-bootstrap';
import { Link } from 'react-router-dom';
import '../App.css'
function MainLayer() {
const boxstyled = {
border: 'solid',
color: 'rgba(195, 195, 195, 0.753)',
borderRadius: '20px',
marginBottom: '1em',
width: '100%',
backgroundSize: 'contain',
margin: 'auto'
}
const btnstyled = {
background: 'rgb(110, 189, 142)',
margin: '1px',
display: 'flex',
justifyContent: 'center',
maxWidth: '100%',
borderWidth: '2px',
fontSize: '10px',
borderColor: 'rgba(195, 195, 195, 0.753)',
borderRadius: '20px',
}
const loginstyled = {
margin: 'auto',
padding: '2px',
diplay: 'flex',
justifyContent: 'center',
borderRadius: '20px'
}
const titlesty = {
display: 'flex',
justifyContent: 'center',
background: 'rgb(110, 189, 142)',
text: 'center'
}
const [logshow, setLogshow] = useState(false);
const [signshow, setSignshow] = useState(false);
return (
<>
setLogshow(false)}
aria-labelledby="example-modal-sizes-title-sm"
>
LOGIN
setSignshow(false)}
aria-labelledby="example-modal-sizes-title-sm"
>
Sign Up
8글자 이상 적어주세요.
setLogshow(false)}
aria-labelledby="example-modal-sizes-title-sm"
>
LOGIN
setSignshow(false)}
aria-labelledby="example-modal-sizes-title-sm"
>
Sign Up
8글자 이상 적어주세요.
>
);
}
export default MainLayer