This commit is contained in:
ISA
2025-05-28 08:04:34 +02:00
parent 97fbb6fdc1
commit 5f0133d638
107 changed files with 1446 additions and 454 deletions

View File

@@ -0,0 +1,21 @@
<!-- /docs/redux/thunks/database/pois/addPoiThunk.md -->
# addPoiThunk.js
Async-Thunk zur Erstellung eines neuen POIs.
## Verwendung
```js
dispatch(addPoiThunk({
name: "Messstelle 1",
poiTypeId: 2,
latitude: 53.21,
longitude: 8.43,
idLD: 12
}));
```
## Intern
Ruft `addPoiService(formData)` auf und gibt das Ergebnis zurück.