All files / src App.js

100% Statements 1/1
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29              1x                                          
// 로고/스타일시트 가져오기
import logo from './logo.svg';
import './App.css';
 
// 앱 컴포넌트 정의
function App() {
  // 렌더링할 내용 생성
  return (
    <div className="App">
      <header className="App-header">
        <img src={logo} className="App-logo" alt="logo" />
        <p>
          Edit <code>src/App.js</code> and save to reload.
        </p>
        <a
          className="App-link"
          href="https://reactjs.org"
          target="_blank"
          rel="noopener noreferrer"
        >
          안녕, 리액트!!
        </a>
      </header>
    </div>
  );
}
 
// 앱 컴포넌트 내보내기
export default App;