App.js 440 Bytes
Newer Older
Lee SeoYeon's avatar
Lee SeoYeon committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import logo from './logo.svg';
import './App.css';



function App() {
  return (
    <div className="App">
      <div className="Header">
        <h1>오늘! 어디가?</h1>
      </div>
      <div class="Blank">
        <input  placeholder="오늘 어디갈래?"></input>
        <button type="button" onclick="location.herf='search.js'"
        class="btn btn-primary">검색</button>
      </div>
    </div>
  );
}

export default App;