next.js/test/e2e/app-dir/ppr-full/components/layout.jsx
layout.jsx19 lines374 B
import React from 'react'
import { Links } from './links'

export const Layout = ({ children }) => {
  return (
    <>
      <h1>Partial Prerendering</h1>
      <p>
        Below are links that are associated with different pages that all will
        partially prerender
      </p>
      <aside>
        <Links />
      </aside>
      <main>{children}</main>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN