<Title render={() => <h1>I am a render prop!</h1>} />
렌더링
prop
을 호출하여 반환된 값을 통해
Title
컴포넌트 내에 데이터를 표시할 수 있습
니다.
const Title = props => props.render();
리액트 요소를 반환하는 함수인
render
라는
prop
을 컴포넌트에 전달해야 합니다.
import React from "react";
import { render } from "react-dom";
import ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.