react-code-dataset
/
next.js
/test
/e2e
/app-dir
/actions
/app
/interception-routes
/(with-modal)
/layout.js
| export default function Layout({ children, modal }) { | |
| return ( | |
| <> | |
| <div id="modal-data">{modal}</div> | |
| <div id="children-data">{children}</div> | |
| </> | |
| ) | |
| } | |