next.js/test/integration/next-image-new/default/pages/warning-once.js
warning-once.js17 lines413 B
import React from 'react'
import Image from 'next/image'

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

export default Page
Quest for Codev2.0.0
/
SIGN IN