next.js/test/e2e/app-dir/next-image/app/legacy/layout.js
layout.js13 lines287 B
import Image from 'next/legacy/image'
import testPng from '../../images/test.png'

export default function LegacyLayout({ children }) {
  return (
    <>
      <h2>app-legacy-layout</h2>
      <Image id="app-legacy-layout" src={testPng} loading="eager" />
      {children}
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN