Controller.js 1.75 KB
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
3
4
import ScreenSelect from './ScreenSelect'
import video_btn from '../../videobtn.png'
import speaker_btn from '../../speakerbtn.png'
import mic_btn from '../../micbtn.png'
seoyeon's avatar
0705    
seoyeon committed
5
6
7
import videooff_btn from '../../videooffbtn.png'
import speakeroff_btn from '../../speakeroffbtn.png'
import micoff_btn from '../../micoffbtn.png'
Kim, Chaerin's avatar
Kim, Chaerin committed
8
9
const Controller = () => {
  return (
Kim, Chaerin's avatar
Kim, Chaerin committed
10
    <div className="container">
seoyeon's avatar
0705    
seoyeon committed
11
12
13
14
15
16
        <div className="row">
          <div
            className="col d-flex justify-content-center"
            style={{ backgroundColor: '#C4C4C4', position:'absolute', bottom:0 }}
          >
            {/* <div className="col d-flex justify-content-center"> 
Kim, Chaerin's avatar
Kim, Chaerin committed
17
18
19
            <button type="button" className="btn">
              <img src={mic_btn} width="45" height="40" />
            </button>
seoyeon's avatar
0705    
seoyeon committed
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
          </div> */}
            <div className="col d-flex justify-content-center">
              <button type="button" className="btn" onClick>
                <img src={micoff_btn} width="45" height="40" />
              </button>
            </div>
            <div className="col d-flex justify-content-center">
              <button type="button" className="btn">
                <img src={speakeroff_btn} width="45" />
              </button>
            </div>
            <div className="col d-flex justify-content-center">
              <button
                type="button"
                className="btn"
                data-bs-toggle="modal"
                data-bs-target="#exampleModal"
                src={video_btn}
                onClick="location.href='ScreenSelect.js'"
              >
                <img src={videooff_btn} width="45" />
              </button>
            </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
43
          </div>
seoyeon's avatar
0705    
seoyeon committed
44
          <ScreenSelect />
Kim, Chaerin's avatar
Kim, Chaerin committed
45
46
47
48
        </div>
      </div>
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
49

Kim, Chaerin's avatar
Kim, Chaerin committed
50
export default Controller