mirror of
https://github.com/plankanban/planka.git
synced 2025-12-27 01:11:50 +03:00
15 lines
360 B
JavaScript
Executable File
15 lines
360 B
JavaScript
Executable File
import { connect } from 'react-redux';
|
|
|
|
import { isAppInitializingSelector } from '../selectors';
|
|
import AppWrapper from '../components/AppWrapper';
|
|
|
|
const mapStateToProps = state => {
|
|
const isAppInitializing = isAppInitializingSelector(state);
|
|
|
|
return {
|
|
isInitializing: isAppInitializing,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(AppWrapper);
|