Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumReactrecursion in componentsSingle-choice MCQ

What is the precise risk of this recursive component, and when does it manifest?

function Comments({ comment }) { return ( <div> <p>{comment.text}</p> <Comments comment={comment} /> </div> ); }