JSX 元素类型“GoogleMapReact”没有任何构造或调用签名.ts(2604)
2020-01-12
348
我在下面的 TypeScript 代码中收到错误“JSX 元素类型‘GoogleMapReact’没有任何构造或调用签名。ts(2604)”。我该如何修复此问题?
import React, { useState } from "react";
import GoogleMapReact from "google-maps-react";
const AnyReactComponent = ({ text }: any) => <div>{text}</div>;
const SimpleMap = (props: any) => {
const [center, setCenter] = useState({ lat: 11.0168, lng: 76.9558 });
const [zoom, setZoom] = useState(11);
return (
<div style={{ height: "100vh", width: "100%" }}>
<GoogleMapReact
bootstrapURLKeys={{ key: "XXXXXXXXXXXXXXXXXXXX" }}
defaultCenter={center}
defaultZoom={zoom}
>
<AnyReactComponent lat={11.0168} lng={76.9558} text="My Marker" />
</GoogleMapReact>
</div>
);
};
export default SimpleMap;
1个回答
您正在导入 google-map s -react 库,但您使用该组件的方式就像使用 google-map-react (map 而不是 map) 。
假设您想使用
google-map-react
:删除
google-maps-react
依赖项,安装
google-map-react
并在代码中更改导入。
yuriy636
2020-01-12