import React from 'react'
import Image from 'next/legacy/image'
const Page = () => {
const [count, setCount] = React.useState(0)
return (
<>
<h1>Warning should print at most once</h1>
<Image
id="w"
layout="fixed"
src="/test.png"
width="400"
height="400"
sizes="50vw"
/>
<button onClick={() => setCount(count + 1)}>Count: {count}</button>
<footer>footer here</footer>
</>
)
}
export default Page