17 lines
281 B
Markdown
17 lines
281 B
Markdown
### 🟩 Datei: `sequenzdiagramm.md`
|
|
|
|
```mermaid
|
|
sequenceDiagram
|
|
participant User
|
|
participant UI
|
|
participant Redux
|
|
participant API
|
|
|
|
User->>UI: Klick auf Modul
|
|
UI->>Redux: Dispatch Action
|
|
Redux->>API: API Request
|
|
API-->>Redux: Antwort
|
|
Redux->>UI: Update View
|
|
|
|
```
|