next.js/test/e2e/app-dir/resolve-extensions/app/component.jsx
component.jsx15 lines284 B
'use client'

import image from './image'
import Image from 'next/image'

export default function Component() {
  return (
    <p>
      <Image src={image} alt="hello image 2" />
      hello world
      {typeof window !== 'undefined' ? 'hello client' : 'hello server'}
    </p>
  )
}
Quest for Codev2.0.0
/
SIGN IN