import React from 'react' import { Container, Row, Col } from 'react-bootstrap'; import MainLayer from '../components/MainLayer'; import '../App.css' import LoginComp from '../components/LoginComp'; import Footer from './../components/Footer'; 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' } return ( ); } export default SignupPage;