mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 17:25:03 +03:00
15 lines
293 B
JavaScript
15 lines
293 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import { pathSelector } from '../selectors';
|
|
import Fixed from '../components/Fixed';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { projectId } = pathSelector(state);
|
|
|
|
return {
|
|
projectId,
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(Fixed);
|