react-simple-maps
react-simple-maps copied to clipboard
Type of Geographies is Inferred as Any?
I'm trying to add types to my map component, but for some reason in the following snippet the type of geographies is inferred as any[]:
export function MyMap() {
return (
<Geographies geography={brTopoJson}>
{({ geographies }) => ( // <- `geographies` has type `any[]`
...
Is this expected? How do I override this?