인터셉팅 라우팅(Intercepting Routes)
Intercepting Routes
Nextgram을 통해 인터셉팅 라우트 알아보기


폴더 구조

Link 이동
Link 이동modal 렌더링 위치

Last updated



Link 이동
Last updated
<html lang='en'>
<body className={inter.className}>
{children}
{modal}
<div id='modal-root' />
</body>
</html>return createPortal(
<div className='modal-backdrop'>
<dialog ref={dialogRef} className='modal' onClose={onDismiss}>
{children}
<button onClick={onDismiss} className='close-button' />
</dialog>
</div>,
document.getElementById('modal-root')!
);