코드 정리
parent
bf3a460610
commit
694f0ef918
|
|
@ -1,4 +1,4 @@
|
|||
import React, { useState, useEffect, useRef } from 'react';
|
||||
import React, { useState } from 'react';
|
||||
import {Link, useLocation, useNavigate} from 'react-router-dom';
|
||||
import * as EgovNet from 'api/egovFetch';
|
||||
|
||||
|
|
@ -7,7 +7,7 @@ import CODE from "constants/code";
|
|||
import Row from 'react-bootstrap/Row';
|
||||
import Col from 'react-bootstrap/Col';
|
||||
|
||||
import { getLocalItem, setLocalItem, setSessionItem } from 'utils/storage';
|
||||
import { setLocalItem } from 'utils/storage';
|
||||
import InfoShareChk from "./InfoShareChk";
|
||||
|
||||
function Join(props) {
|
||||
|
|
@ -21,7 +21,6 @@ function Join(props) {
|
|||
|
||||
const [userInfo, setUserInfo] = useState({ id: '', password: '', passwordChk: '', userNm: '', email: '', phoneNum: ''});
|
||||
const [infoShareChk, setInfoShareChk] = useState(false);
|
||||
const [submitFlag, setSubmitFlag] = useState(true);
|
||||
|
||||
const submitFormHandler = (e) => {
|
||||
console.log("JoinContent submitFormHandler()");
|
||||
|
|
|
|||
Loading…
Reference in New Issue