File size: 256 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
export default function Layout({ children, bar, foo }) {
  return (
    <div>
      <h1>Parallel Routes Layout</h1>
      <div id="nested-children">{children}</div>
      <div id="foo-slot">{foo}</div>
      <div id="bar-slot">{bar}</div>
    </div>
  )
}