react-custom-hook
react custom hook
import { withAuth } from "../../../src/components/commons/hocs/withAuth"; import MyPageContainer from "../../../src/components/units/user/mypage/UserMypage.container"; export function MyPage() { return ; } export default withAuth(MyPage); Mypage 부분, HOC (MyPage를 withAuth의 인자로 주고 그 return을 export함) 이걸 커스텀훅을 사용하는 방식으로 바꿀건데, page가 아니라 container에서 작업하기로 했다. import { useAuth } from "../../../commons/..