권서진forComit Dev Teamblog.skku-comit.dev·Jan 17, 2024[Next.js] Parallel RoutesParallel Routes 병렬 라우팅이란 하나의 레이아웃에서 여러 페이지를 동시에 렌더링하는 것입니다.(아래의 예시에서 team과 analytics, 2개의 page를 동시에 렌더링 중) Convention 슬롯(@folder) 을 사용하여 생성하며, 동일 레벨의 layout에 props로 전달됩니다. /*app/layout.tsx*/ export default function Layout(props: { children: React...660 readsNext.js
Qasim Aminqasim.au·Aug 20, 2023Parallel Routes In NextJSWhat Are Parallel Routes? Parallel routes in NextJS allow you to display two pages on one segment. What that allows you to do is render two pieces of separate information that can be independently changed, and this allows for a more efficient user e...235 readsNext.js