Skip to content

Commit c9f0cf9

Browse files
committed
rename: 컴포넌트 경로 수정
1 parent 1f84e3f commit c9f0cf9

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

src/app/(pages)/(albaform)/addform/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import Button from "@/app/components/button/default/Button";
88
import { toast } from "react-hot-toast";
99
import { useMutation } from "@tanstack/react-query";
1010
import { useUpdateProfile } from "@/hooks/queries/user/me/useUpdateProfile";
11-
import RecruitContentSection from "./RecruitContentSection";
12-
import RecruitConditionSection from "./RecruitConditionSection";
13-
import WorkConditionSection from "./WorkConditionSection";
11+
import RecruitContentSection from "./section/RecruitContentSection";
12+
import RecruitConditionSection from "./section/RecruitConditionSection";
13+
import WorkConditionSection from "./section/WorkConditionSection";
1414
import useEditing from "@/hooks/useEditing";
1515
import { SubmitFormDataType } from "@/types/addform";
1616

src/app/(pages)/(albaform)/addform/RecruitConditionSection.tsx renamed to src/app/(pages)/(albaform)/addform/section/RecruitConditionSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22
import { useFormContext } from "react-hook-form";
3-
import Label from "../Label";
3+
import Label from "../../component/Label";
44
import InputDropdown from "@/app/components/button/dropdown/InputDropdown";
55

66
// 알바폼 만들기 - 사장님- 2-모집조건

src/app/(pages)/(albaform)/addform/RecruitContentSection.tsx renamed to src/app/(pages)/(albaform)/addform/section/RecruitContentSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"use client";
2-
import Label from "../Label";
2+
import Label from "../../component/Label";
33
import BaseInput from "@/app/components/input/text/BaseInput";
44
import BaseTextArea from "@/app/components/input/textarea/BaseTextArea";
55
import ImageInput from "@/app/components/input/file/ImageInput/ImageInput";

src/app/(pages)/(albaform)/addform/WorkConditionSection.tsx renamed to src/app/(pages)/(albaform)/addform/section/WorkConditionSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { useFormContext } from "react-hook-form";
44
import { useState, ChangeEvent, MouseEvent, useEffect } from "react";
5-
import Label from "../Label";
5+
import Label from "../../component/Label";
66
import { cn } from "@/lib/tailwindUtil";
77
import DatePickerInput from "@/app/components/input/dateTimeDaypicker/DatePickerInput";
88
import LocationInput from "@/app/components/input/text/LocationInput";

src/app/(pages)/(albaform)/alba/[formId]/edit/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import Button from "@/app/components/button/default/Button";
1010
import { toast } from "react-hot-toast";
1111
import { useMutation } from "@tanstack/react-query";
1212
import { useUpdateProfile } from "@/hooks/queries/user/me/useUpdateProfile";
13-
import RecruitContentSection from "../../../addform/RecruitContentSection";
14-
import RecruitConditionSection from "../../../addform/RecruitConditionSection";
15-
import WorkConditionSection from "../../../addform/WorkConditionSection";
13+
import RecruitContentSection from "../../../addform/section/RecruitContentSection";
14+
import RecruitConditionSection from "../../../addform/section/RecruitConditionSection";
15+
import WorkConditionSection from "../../../addform/section/WorkConditionSection";
1616
import useUserFormDetail from "@/hooks/queries/form/userFormDetail";
1717
import { SubmitFormDataType } from "@/types/addform";
1818
import useEditing from "@/hooks/useEditing";

src/app/(pages)/(albaform)/apply/[formId]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { cn } from "@/lib/tailwindUtil";
88
import axios from "axios";
99
import toast from "react-hot-toast";
1010
import { useParams, useRouter } from "next/navigation";
11-
import Label from "@/app/(pages)/(albaform)/Label";
11+
import Label from "@/app/(pages)/(albaform)/component/Label";
1212
import { useMutation } from "@tanstack/react-query";
1313
import { useEffect } from "react";
1414
interface ApplyFormData {
File renamed without changes.

src/app/components/layout/addFormLayout/AddFormLayout.tsx renamed to src/app/(pages)/(albaform)/component/addFormLayout/AddFormLayout.tsx

File renamed without changes.

src/app/components/layout/addFormLayout/ApplyHeader.tsx renamed to src/app/(pages)/(albaform)/component/addFormLayout/ApplyHeader.tsx

File renamed without changes.

src/app/(pages)/(albaform)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"use client";
2-
import AddFormLayout from "@/app/components/layout/addFormLayout/AddFormLayout";
2+
import AddFormLayout from "@/app/(pages)/(albaform)/component/addFormLayout/AddFormLayout";
33
import { ReactNode, Suspense } from "react";
44

55
export default function Layout({ children }: { children: ReactNode }) {

0 commit comments

Comments
 (0)