mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-22 03:09:25 +00:00
12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
// Copyright 2019-2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { createStore } from 'redux';
|
|
import { reducer } from './reducer';
|
|
|
|
import * as stickersDuck from './ducks/stickers';
|
|
|
|
export { stickersDuck };
|
|
|
|
export const store = createStore(reducer);
|