mirror of
https://github.com/plankanban/planka.git
synced 2025-07-22 22:59:44 +02:00
14 lines
332 B
JavaScript
Executable file
14 lines
332 B
JavaScript
Executable file
import { connect } from 'react-redux';
|
|
|
|
import { currentBoardSelector } from '../selectors';
|
|
import BoardWrapper from '../components/BoardWrapper';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { isFetching } = currentBoardSelector(state);
|
|
|
|
return {
|
|
isFetching,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(BoardWrapper);
|