This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <select name="choice"> | |
| <option value="banana">바나나</option> | |
| <option value="apple">사과</option> | |
| <option value="orange">오렌지</option> | |
| </select> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .container { | |
| margin: 1em 0; | |
| border: 3px dotted #4a4a4a; | |
| padding: 0.5em; | |
| background-color: #c2edc8; | |
| display: flex; | |
| flex-direction: row; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .container { | |
| margin: 1em 0; | |
| border: 3px dotted #4a4a4a; | |
| padding: 0.5em; | |
| background-color: #c2edc8; | |
| display: flex; | |
| flex-direction: row; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .container { | |
| display: flex; | |
| margin: 1em 0; | |
| border: 3px dotted #4a4a4a; | |
| padding: 0.5em; | |
| } | |
| .box { | |
| background-color: #3f29ef; | |
| color: white; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ddd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, {Component} from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import YTsearch from 'youtube-api-search'; | |
| import About from './components/About'; | |
| import Search_bar from './components/search_bar'; | |
| const API_KEY ='blablabla'; | |
| class App extends React.Component { |
NewerOlder