File size: 174 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
export default function Layout({ children, modal }) {
return (
<>
<div id="modal-data">{modal}</div>
<div id="children-data">{children}</div>
</>
)
}
|