UNPKG
ola-maps-react
Version:
latest (1.0.1)
1.0.1
1.0.0
A simple react component to use Ola maps in your react applications
ola-maps-test.vercel.app
ola-maps-react
/
src
/
components
/
Utils
/
GetApiKey.js
9 lines
(8 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
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;