[React] Props 퀴즈

Suvina·2024년 3월 19일

React

목록 보기
12/22
post-thumbnail
출처: https://www.udemy.com/course/best-react/

다음 중 문구 “Priority:5”를 화면에 출력하지 않는 코드는?

1)

<MyComponent priority = {5} />
function MyComponent({...props}) {
	return <p>Priority: {props.priority}</p>
}

2)

<MyComponent priority = {5} />
function MyComponent(props) {
	return <p>Priority: {props.priority}</p>
}

3)


<MyComponent priority = {5} />
function MyComponent({props}) {
	return <p>Priority: {priority}</p>
}

4)

<MyComponent priority = {5} />
function MyComponent(priority) {
	return <p>Priority: {priority}</p>
}

정답 : 4번

profile
개인공부

0개의 댓글