import React, { useState } from 'react';
import { Field, Formik } from 'formik';
import * as Yup from 'yup';
import axios from 'axios';
import { Link, Redirect } from 'react-router-dom';
import styled from 'styled-components';
const Nav = styled.nav`
    background-color: #7B031D;
    height: 10vh;
    a {
        color: #ffffff;
    }
`
const Wow = styled.div`
    height: 90vh;
    & #reCheck::after {
        content: '비밀번호를 다시 입력하세요';
    }
    & #reCheck:not(.right) {
        content: '비밀번호가 다릅니다.';
        color: red;
    }
    & .asd {
        display: flex;
        flex-direction: column;
    }
`
function Signup() {
    const [state, setState] = useState(false);
    const [checkPw, setCheckPw] = useState(true);
    if (state) {
        return