File size: 341 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export default function Layout({ children, bar, foo }) {
return (
<main
style={{
backgroundColor: '#fff',
zIndex: 300,
}}
>
<h1>Parallel Routes Layout</h1>
<div id="nested-children">{children}</div>
<div id="foo-slot">{foo}</div>
<div id="bar-slot">{bar}</div>
</main>
)
}
|