Controller.js 1.29 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'
Kim, Chaerin's avatar
Kim, Chaerin committed
5
6
const Controller = () => {
  return (
Kim, Chaerin's avatar
Kim, Chaerin committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
    <div className="container">
      <div className="row">
        <div
          className="col d-flex justify-content-center"
          style={{ backgroundColor: '#C4C4C4' }}
        >
          <div className="col d-flex justify-content-center">
            <button type="button" className="btn">
              <img src={mic_btn} width="45" height="40" />
            </button>
          </div>
          <div className="col d-flex justify-content-center">
            <button type="button" className="btn">
              <img src={speaker_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={video_btn} width="45" />
            </button>
          </div>
        </div>
        <ScreenSelect />
      </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
38
    </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
39
40
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
41

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