+ );
+};
+
+export default Channelsettingchange;
diff --git a/client/src/components/Room/Createchannel.js b/client/src/components/Room/Createchannel.js
new file mode 100644
index 0000000000000000000000000000000000000000..8a085099253659bfb9ee902887b9da7e3cb52a8f
--- /dev/null
+++ b/client/src/components/Room/Createchannel.js
@@ -0,0 +1,11 @@
+
+/* 만들 채널의 이름을 입력받고(지금부터 "이름"이라 하자.), 그걸로 {"이름": []}의 형태로 체널을 만든다. 그후, 그 json파일을 현재 roomId의 channel에 추가한다. */
+const Createchannel = () => {
+ return (
+
+
+
+ );
+};
+
+export default Createchannel;
\ No newline at end of file
diff --git a/client/src/components/Room/Deletechannel.js b/client/src/components/Room/Deletechannel.js
new file mode 100644
index 0000000000000000000000000000000000000000..51cd10ce7b0fbf6b9915705a57c4422ee31f695b
--- /dev/null
+++ b/client/src/components/Room/Deletechannel.js
@@ -0,0 +1,10 @@
+
+/* 삭제할 채널의 이름을 입력받아서 일치하는 채널이름이 있으면 삭제하고, 없으면 그런 이름의 채널이 존재하지 않는다고 알림창을 띄운다. */
+const Deletechannel = () => {
+ return (
+
+
+ );
+};
+
+export default Deletechannel;
\ No newline at end of file
diff --git a/client/src/components/Room/RightHamburger.js b/client/src/components/Room/RightHamburger.js
index cdefe77e6f9ab4e87c228848760a214e34745677..8b5bd3e0de5e4e4dbc096a1955389faa23e878a2 100644
--- a/client/src/components/Room/RightHamburger.js
+++ b/client/src/components/Room/RightHamburger.js
@@ -4,7 +4,8 @@ import ChannelSingle from "./ChannelSingle";
import RoomApi from "../../apis/room.api";
import catchErrors from "../../context/catchError";
import KakaoShareButton from "../KakaoShareButton";
-import Roomnamechange from "./Roomnamechange";
+import Roomsettingchange from "./Roomsettingchange";
+import Channelsettingchange from "./Channelsettingchange";
const INIT_ROOM = {
name: "",
@@ -15,6 +16,7 @@ const INIT_CHANNEL = {
channelName: "",
joinName: [],
};
+
const RightHamburger = () => {
const [channel, setChannel] = useState([INIT_CHANNEL]);
const [room, setRoom] = useState([INIT_ROOM]);
@@ -245,21 +247,8 @@ const RightHamburger = () => {