File size: 170 Bytes
1e92f2d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export default function Layout({ children }) {
  return (
    <div>
      <h1>Nested Layout</h1>
      <div className="nested-children">{children}</div>
    </div>
  )
}