blob: 61f959320e616f4d3bbbee56a3bc5c42221812f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { connect } from 'react-redux'
import LoadChartComponent from '../../../../components/app/sidebars/elements/LoadChartComponent'
const mapStateToProps = (state, ownProps) => {
const data = []
return {
data,
currentTick: state.currentTick,
}
}
const LoadChartContainer = connect(mapStateToProps)(LoadChartComponent)
export default LoadChartContainer
|