You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
508 B
19 lines
508 B
import React, { useState, createContext, useContext, useEffect } from "react"
|
|
|
|
export const MapRefContext = createContext();
|
|
|
|
const MapRefProvider = ({ children }) => {
|
|
|
|
//problema: as vzs renderiza antes de carregar a localização correta do usuário
|
|
const [mapRef, setMapRef] = useState();
|
|
|
|
return (
|
|
<MapRefContext.Provider value={{
|
|
mapRef,
|
|
setMapRef,
|
|
}}>
|
|
{children}
|
|
</MapRefContext.Provider>
|
|
)
|
|
}
|
|
export default MapRefProvider;
|