react-code-dataset
/
next.js
/test
/development
/app-dir
/segment-explorer
/app
/boundary
/layout.tsx
| export default function Layout({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <div> | |
| <h1>Boundary Layout</h1> | |
| {children} | |
| </div> | |
| ) | |
| } | |