1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { BannerAction, bannerReducerActions } from "./banner-action";
7 export interface BannerState {
11 const initialState = {
15 export const bannerReducer = (state: BannerState = initialState, action: BannerAction) =>
16 bannerReducerActions.match(action, {
22 CLOSE_BANNER: () => ({