Skip to content

Commit

Permalink
feat: login 페이지 라우팅 경로 /login에서 /login/main으로 변경 #5
Browse files Browse the repository at this point in the history
feat: login 페이지 라우팅 경로 /login에서 /login/main으로 변경
  • Loading branch information
Joonhyung-Choi committed Jul 4, 2023
1 parent 25dcc8d commit 6146807
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 0 additions & 8 deletions pages/login.tsx

This file was deleted.

8 changes: 8 additions & 0 deletions pages/login/main.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import LoginMainContainer from "../../src/login/loginMain/LoginMainContainer";

const LoginMain = () => {
return <LoginMainContainer />;
};

export default LoginMain;

0 comments on commit 6146807

Please sign in to comment.