19 lines
531 B
TypeScript
19 lines
531 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { ReactElement } from 'react';
|
|
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
|
|
import type { Store } from 'redux';
|
|
|
|
import { SmartApp } from '../smart/App';
|
|
import { SmartGlobalAudioProvider } from '../smart/GlobalAudioProvider';
|
|
|
|
export const createApp = (store: Store): ReactElement => (
|
|
<Provider store={store}>
|
|
<SmartGlobalAudioProvider>
|
|
<SmartApp />
|
|
</SmartGlobalAudioProvider>
|
|
</Provider>
|
|
);
|