next.js/test/e2e/app-dir/third-parties/app/google-maps-embed/page.tsx
page.tsx20 lines377 B
import { GoogleMapsEmbed } from '@next/third-parties/google'

const Page = () => {
  return (
    <div className="container">
      <h1>Google Maps Embed</h1>
      <GoogleMapsEmbed
        apiKey="XYZ"
        height={200}
        width="100%"
        mode="place"
        id="maps-embed"
        q="Brooklyn+Bridge,New+York,NY"
      />
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN