diff --git a/frontend/src/app/add-shows/_components/add-shows-form.tsx b/frontend/src/app/add-shows/_components/add-shows-form.tsx
index ba7442a..5b3bd24 100644
--- a/frontend/src/app/add-shows/_components/add-shows-form.tsx
+++ b/frontend/src/app/add-shows/_components/add-shows-form.tsx
@@ -8,13 +8,18 @@ import { useForm } from "react-hook-form";
import { ShowType } from "../types";
import { addShowForm } from "../validations/schema";
-import BasicInfo from "./basic-info";
-import DateTimeSection from "./date-time-select";
-import FacilitiesSection from "./facilities-section";
+import CustomTagInput from "./custom-tag-input";
+import DescriptionInput from "./description-input";
+import EndDateInput from "./end-date-input";
+import FacilitiesSection from "./facilities-selector";
+import FeeInput from "./fee-input";
import LocationSection from "./location-select";
-import TagSection from "./tag-select";
+import OpenTimesInput from "./open-time-input";
+import PublicTagSelect from "./select-public-tags";
+import StartDateInput from "./start-date-input";
+import TitleInput from "./title-input";
-export default function AddShowsForm() {
+export default function AddShowsForm(): JSX.Element {
const router = useRouter();
const [isLoading, setIsLoading] = useState(false);
const [tagInput, setTagInput] = useState("");
@@ -70,25 +75,31 @@ export default function AddShowsForm() {
>
팝업/전시회 등록
-
+
+
+
-
+
+
+
+
+
+
-
-
+