JSX

이다은·2022년 8월 31일
0
post-custom-banner

JSX는 React에서 사용하는 React 전용 HMTL이다

기본 HTML 방식
<div>
    <div class="title">제목</div>
    <button onclick="alert();">버튼</button>
</div>
JSX 방식
<div>
    <div className="title">제목</div>
    <button onClick="alert();">버튼</button>
</div>

class -> className
onclick -> onClick
속성값이 달라진 것을 확인할 수 있다

웹브라우저는 HTML, CSS, JAVASCRIPTAKS 읽을 수 있지만 최종적으로 소스코드가 실행될 때에는 JSX가 HTML화 되어 실행된다

profile
안녕하세요

0개의 댓글