잡담/자료 스크랩용

기본개념 정리

YONS 2022. 2. 20. 11:16

1. 함수 function

1) 함수형 컴포넌트

function Title() {
    return (
    	<h3 id="title" onMouseEnter={() => console.log("mouse enter")}>
        	Hello I'm a title
    	</h3>
    );
}

 

2) 화살표함수를 적용한 함수형 컴포넌트

const Title = () => (
    <h3 id="title" onMouseEnter={() => console.log("mouse enter")}>
        Hello I'm a title
    </h3>
);