// /redux/api/fromWebService/fetchGisStationsMeasurements.js import { mapGisStationsMeasurementsUrl } from "../../../config/config"; export const fetchGisStationsMeasurements = async () => { const response = await fetch(mapGisStationsMeasurementsUrl); if (!response.ok) { throw new Error("GisStationsMeasurements konnte nicht geladen werden"); } return await response.json(); };