use() 훅
function Profile({promise}) {
const user = use(promise);
return <h1>{user.name}</h1>;
}조건부 사용 가능. Context도 use()로 읽기.
React 19의 Promise·Context 언래핑. Suspense와 통합.
function Profile({promise}) {
const user = use(promise);
return <h1>{user.name}</h1>;
}조건부 사용 가능. Context도 use()로 읽기.