Commit 3e9c534c authored by Kim, Chaerin's avatar Kim, Chaerin
Browse files

img 폴더로 관리

parent 303f5519
...@@ -6,7 +6,7 @@ import userApi from '../../apis/user.api'; ...@@ -6,7 +6,7 @@ import userApi from '../../apis/user.api';
const RoomSingle = () => { const RoomSingle = () => {
const [roomNum, setRoomNum] = useState('') const [roomNum, setRoomNum] = useState('')
const [room, setRoom] = useState([]) const [room, setRoom] = useState([])
const id = localStorage.getItem('user'); const roomId = localStorage.getItem('user');
const channelId = 1 const channelId = 1
const A = [] const A = []
...@@ -30,7 +30,7 @@ const RoomSingle = () => { ...@@ -30,7 +30,7 @@ const RoomSingle = () => {
return ( return (
<Link <Link
to={`/room/${id}/${channelId}`} to={`/room/${roomId}/${channelId}`}
className="text-decoration-none text-dark" className="text-decoration-none text-dark"
> >
<div <div
......
import ScreenSelect from './ScreenSelect' import ScreenSelect from './ScreenSelect'
import video_btn from '../../videobtn.png' import video_btn from '../../images/videobtn.png'
import speaker_btn from '../../speakerbtn.png' import speaker_btn from '../../images/speakerbtn.png'
import mic_btn from '../../micbtn.png' import mic_btn from '../../images/micbtn.png'
import videooff_btn from '../../videooffbtn.png' import videooff_btn from '../../images/videooffbtn.png'
import speakeroff_btn from '../../speakeroffbtn.png' import speakeroff_btn from '../../images/speakeroffbtn.png'
import micoff_btn from '../../micoffbtn.png' import micoff_btn from '../../images/micoffbtn.png'
import React, { useState } from 'react'; import React, { useState } from 'react';
const Controller = () => { const Controller = () => {
......
import backward from "../../backward.png"; import backward from "../../images/backward.png";
import ChannelSingle from "./ChannelSingle"; import ChannelSingle from "./ChannelSingle";
const LeftHamberger = () => { const LeftHamberger = () => {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment