Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 | 42x 42x 42x 42x | import { createReducer, on } from "@ngrx/store"
import { CcState } from "../../../../codeCharta.model"
import { setRightClickedNodeData } from "./rightClickedNodeData.actions"
export const defaultRightClickedNodeData: CcState["appStatus"]["rightClickedNodeData"] = null
export const rightClickedNodeData = createReducer(
defaultRightClickedNodeData,
on(setRightClickedNodeData, (_state, action) => action.value)
)
|