다음으로 LoginPage와 RegisterPage에서 방금 만든 컴포넌트들을 렌더링하세요.
pages/LoginPage.js
import React from 'react'; import AuthTemplate from '../components/auth/AuthTemplate'; import AuthForm from '../components/auth/AuthForm'; const LoginPage = () => { return ( <AuthTemplate> <AuthForm /> </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 /> </AuthTemplate> ); }; export default RegisterPage;