mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-21 18:59:27 +00:00
16 lines
381 B
TypeScript
16 lines
381 B
TypeScript
// Copyright 2019-2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
|
|
import type { Store } from 'redux';
|
|
|
|
import { SmartLeftPane } from '../smart/LeftPane';
|
|
|
|
export const createLeftPane = (store: Store): React.ReactElement => (
|
|
<Provider store={store}>
|
|
<SmartLeftPane />
|
|
</Provider>
|
|
);
|