@@ -124,7 +124,7 @@ class CurrencyList extends Component {
}}
renderRow={(rowData, sectionID, rowID) => {
return <CurrencyListItem
- rowList={rowData}
+ rowData={rowData}
onItemClick={this.onItemClick}/>
style={{
@@ -25,7 +25,7 @@ export default class CurrencyListItem extends Component {
}
render () {
- const { rowList } = this.props
+ const { rowData: { rowList } } = this.props
const rowItems = []
if (!isObjEmpty(rowList)) {
rowList.forEach((item, index) => {