next.js/test/integration/next-image-new/base-path/pages/flex.js
flex.js25 lines423 B
import React from 'react'
import Image from 'next/image'

const Page = () => {
  return (
    <div>
      <p>Hello World</p>
      <Image
        id="basic-image"
        src="/docs/test.jpg"
        width={400}
        height={400}
      ></Image>
      <p id="stubtext">This is the index page</p>
      <style jsx>{`
        div {
          display: flex;
        }
      `}</style>
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN