mirror of
https://github.com/plankanban/planka.git
synced 2025-12-27 17:25:02 +03:00
Background gradients, migrate from CSS to SCSS, remove !important
This commit is contained in:
14
client/src/containers/FixedContainer.js
Normal file
14
client/src/containers/FixedContainer.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user