UNPKG

ola-maps-react

Version:

A simple react component to use Ola maps in your react applications

9 lines (8 loc) 276 B
const getApiKey = () => { const apiKey = process.env.REACT_APP_OLA_MAPS_API_KEY; if (!apiKey) { throw new Error("OlaMap API key not found. Please set the OLA_MAPS_API_KEY environment variable."); } return apiKey; }; export default getApiKey;