0
2
JRJose Romero
nextlayoutcreate
NextJS Javascript RecipesThe React model allows us to deconstruct a page into a series of components. Many of these components are often reused between pages.
Library: next
Shortcut: next.layout.create
export default function Layout({ children }) {
return (
<>
<div>{children}</div>
</>
)
}