Skip to content

Commit 8845a42

Browse files
authored
Merge pull request #84 from part3-4team-Taskify/feature/Gnb
[Refactor] 폴더명 첫자 소문자로 변경, tailwind.config 파일 삭제
2 parents 94ac0b4 + c15914f commit 8845a42

File tree

14 files changed

+22
-24
lines changed

14 files changed

+22
-24
lines changed

public/svgs/dummy-icon.png

-636 Bytes
Binary file not shown.

src/api/members.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import axios from "axios";
2-
import { MemberType } from "@/components/Gnb/type";
2+
import { MemberType } from "@/components/gnb/type";
33

44
interface ApiResponse {
55
members: MemberType[]; // 실제 데이터

src/components/Gnb/HeaderMypage.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ const HeaderMyPage = () => {
9393
/>
9494
<span className="text-sm md:text-base text-gray1">초대하기</span>
9595
</button>
96-
{/*임시 컴포넌트명, 추후 정식 초대 모달 컴포넌트로 교체*/}
9796
{isModalOpen && <NewDashboard onClose={closeInviteModal} />}
9897
</div>
9998

src/components/ModalInput/TaskModal.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { useState } from "react";
2-
import ModalInput from "@/components/ModalInput/ModalInput";
3-
import ModalTextarea from "@/components/ModalInput/ModalTextarea";
4-
import ModalImage from "@/components/ModalInput/ModalImage";
5-
import TextButton from "@/components/ModalInput/TextButton";
6-
import StatusSelect from "@/components/ModalInput/StatusSelect";
7-
import AssigneeSelect from "@/components/ModalInput/AssigneeSelect";
2+
import ModalInput from "@/components/modalInput/ModalInput";
3+
import ModalTextarea from "@/components/modalInput/ModalTextarea";
4+
import ModalImage from "@/components/modalInput/ModalImage";
5+
import TextButton from "@/components/modalInput/TextButton";
6+
import StatusSelect from "@/components/modalInput/StatusSelect";
7+
import AssigneeSelect from "@/components/modalInput/AssigneeSelect";
88

99
interface TaskModalProps {
1010
mode?: "create" | "edit";

src/components/ModalInput/ToDoModal.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { useState } from "react";
2-
import ModalInput from "@/components/ModalInput/ModalInput";
3-
import ModalTextarea from "@/components/ModalInput/ModalTextarea";
4-
import ModalImage from "@/components/ModalInput/ModalImage";
5-
import TextButton from "@/components/ModalInput/TextButton";
6-
import AssigneeSelect from "@/components/ModalInput/AssigneeSelect";
2+
import ModalInput from "@/components/modalInput/ModalInput";
3+
import ModalTextarea from "@/components/modalInput/ModalTextarea";
4+
import ModalImage from "@/components/modalInput/ModalImage";
5+
import TextButton from "@/components/modalInput/TextButton";
6+
import AssigneeSelect from "@/components/modalInput/AssigneeSelect";
77

88
interface TaskModalProps {
99
onClose: () => void;

src/components/SideMenu/ComminLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ReactNode } from "react";
22

3-
import SideMenu from "@/components/SideMenu/SideMenu";
3+
import SideMenu from "@/components/sideMenu/SideMenu";
44

55
export default function CommonLayout({ children }: { children: ReactNode }) {
66
return (

src/components/SideMenu/SideMenu.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import Image from "next/image";
33
import Link from "next/link";
44
import { useRouter } from "next/router";
55
import { useEffect, useState } from "react";
6-
76
import { getDashboards } from "@/api/sidemenu";
87

98
interface Dashboard {

src/components/table/member/MemberList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState, useEffect } from "react";
22
import Pagination from "../TablePagination";
33
import RandomProfile from "./RandomProfile";
4-
import { MemberType } from "@/components/Gnb/type";
4+
import { MemberType } from "@/components/gnb/type";
55
import { getMembers } from "@/api/members";
66

77
interface HeaderBebridgeProps {

src/pages/dashboard/[dashboardId]/edit.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useRouter } from "next/router";
22
import ChangeBebridge from "@/components/modal/ChangeBebridge";
3-
import HeaderBebridge from "@/components/Gnb/HeaderBebridge";
3+
import HeaderBebridge from "@/components/gnb/HeaderBebridge";
44
import MemberList from "@/components/table/member/MemberList";
55
// import SideMenu from "@/components/SideMenu/SideMenu";
66
import InviteRecords from "@/components/table/InviteRecords";

src/pages/dashboard/[dashboardId]/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from "react";
22
import { useRouter } from "next/router";
3-
import HeaderBebridge from "@/components/Gnb/HeaderBebridge";
3+
import HeaderBebridge from "@/components/gnb/HeaderBebridge";
44
import NewDashboard from "@/components/modal/NewDashboard";
55

66
export default function Dashboard() {

0 commit comments

Comments
 (0)