Skip to content

Commit

Permalink
redux implementation diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
jorimdd committed Dec 5, 2023
1 parent 567d10d commit f64669a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tdd/redux-implementation.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
@startuml ReduxImplementation
title Redux Implementation in App

package "Redux Store" {
[rootReducer]
[store]
[persistedStore]
}

package "Redux Slices" {
[notificationSlice]
[navigationSlice]
[themeSlice]
[languageSlice]
[layoutSlice]
[loadingSlice]
[fontSlice]
[courseDataSlice]
[tutorialSlice]
[animationSlice]
[backgroundInformationSlice]
}

package "Redux Hooks" {
[useAppDispatch]
[useAppSelector]
}

"Redux Store" --> "Redux Slices" : includes
"Redux Hooks" --> "Redux Store" : uses

@enduml

0 comments on commit f64669a

Please sign in to comment.