import React, { useState, useEffect } from 'react' import { Container, Row, Col, Button } from 'react-bootstrap'; import MainLayer from '../components/MainLayer'; import '../App.css' import SignupComp from '../components/SignupComp'; function SignupPage() { const constyled = { display: 'flex', justifyContent: 'space-evenly', width: '100%', position: 'relative' } const col1sty = { display: 'flex', justifyContent: 'start', alignItems: 'center' } const col2sty = { display: 'flex', justifyContent: 'center', alignItems: 'center', flexDirection: 'column', padding: '0' } useEffect(() => { console.log('마운트 될때마다 실행'); }, []); return ( ); } export default SignupPage;