Problem Statement
What are portals in React?
Explanation
Portals let you render components outside the main DOM hierarchy, useful for modals or tooltips that need to escape parent overflow or z-index issues.
Code Solution
SolutionRead Only
ReactDOM.createPortal(<Modal />, document.getElementById('portal-root'));