React
- 4 ответа
- 0 вопросов
1
Вклад в тег
import React, { Component } from 'react';
import { connect } from "react-redux";
class componentName extends Component {
render() {
const {minValue, maxValue} = this.props
return (
<div>
</div>
);
}
}
const mapStateToProps = (state, ownProps) => {
// здесь у вас есть доступ к redux store с вашим массивом данных
console.log('redux store ', state)
console.log('own component props ', ownProps)
const minVal = ваша функция
const maxVal = ваша функция
return {
minValue: minVal,
minValue: maxVal,
};
};
export default connect(mapStateToProps)(componentName);