mirror of
https://github.com/plankanban/planka.git
synced 2025-07-22 06:39:44 +02:00
14 lines
362 B
JavaScript
Executable file
14 lines
362 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);
|