import React, { useState, createContext } from "react" export const EventLocationContext = createContext(); const EventLocationProvider = ({ children }) => { const [eventLocation, setEventLocation] = useState("endereço"); const saveNewLocation = (local) => { setEventLocation(local); console.log("NOVO LOCAL: " + local); } return ( {children} ) } export default EventLocationProvider;