soiz1's picture
Upload 2891 files
6bcb42f verified
raw
history blame contribute delete
348 Bytes
import {connect} from 'react-redux';
import DragLayer from '../components/drag-layer/drag-layer.jsx';
const mapStateToProps = state => ({
dragging: state.scratchGui.assetDrag.dragging,
currentOffset: state.scratchGui.assetDrag.currentOffset,
img: state.scratchGui.assetDrag.img
});
export default connect(mapStateToProps)(DragLayer);