App.js 635 Bytes
Newer Older
이재연's avatar
병합    
이재연 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import logo from './logo.svg';
import './App.css';
import { Button } from 'react-bootstrap';

function App() {
  function btnfunc(){
    alert("hi")
    console.log("")
  }
  return (
    <div className="App">
      <header className="App-header">
        <img src={logo} className="App-logo" alt="logo" />
        <p>
Kim, Subin's avatar
Kim, Subin committed
15
          Edit <code>src/App.js</code> and save to reload.
이재연's avatar
병합    
이재연 committed
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
        </p>
        <a
          className="App-link"
          href="https://reactjs.org"
          target="_blank"
          rel="noopener noreferrer"
        >
          Learn React
        </a>
      </header>
    </div>
  );
}

export default App;