UNPKG

qwc2

Version:
18 lines (17 loc) 532 B
/** * Copyright 2025 Sourcepole AG * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ import ReducerIndex from '../reducers/index'; import searchReducer from '../reducers/search'; ReducerIndex.register("search", searchReducer); export var SET_CURRENT_SEARCH_RESULT = 'SET_CURRENT_SEARCH_RESULT'; export function setCurrentSearchResult(result) { return { type: SET_CURRENT_SEARCH_RESULT, result: result }; }