rsnext/test/e2e/app-dir/next-image/app/layout.js

18 lines
357 B
JavaScript
Raw Normal View History

import Image from 'next/image'
import testPng from '../images/test.png'
export default function Layout({ children }) {
return (
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h2>app-layout</h2>
<Image id="app-layout" src={testPng} quality={85} />
{children}
</body>
</html>
)
}