react-native-mock-tmp-build
Version:
A fully mocked and test-friendly version of react native
28 lines (18 loc) • 417 B
JavaScript
class ListViewDataSource {
constructor() {
this._dataBlob = null;
}
getRowCount() {
}
cloneWithRows(data) {
const newSource = new ListViewDataSource();
newSource._dataBlob = data;
return newSource;
}
cloneWithRowsAndSections(data) {
const newSource = new ListViewDataSource();
newSource._dataBlob = data;
return newSource;
}
}
module.exports = ListViewDataSource;