LoginPage와 RegisterPage에서 AuthForm을 사용할 때 type을 넣어 주세요.

    pages/LoginPage.js

    import React from 'react';
    import AuthTemplate from '../components/auth/AuthTemplate';
    import AuthForm from '../components/auth/AuthForm';
    
    const LoginPage = () => {
      return (
        <AuthTemplate>
          <AuthForm type="login" />
        </AuthTemplate>
      );
    };
    
    export default LoginPage;

     

    pages/RegisterPage.js

    import React from 'react';
    import AuthTemplate from '../components/auth/AuthTemplate';
    import AuthForm from '../components/auth/AuthForm';
    
    const RegisterPage = () => {
      return (
        <AuthTemplate>
          <AuthForm type="register" />
        </AuthTemplate>
      );
    };
    
    export default RegisterPage;

    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.