@react-native-mapbox-gl/maps
Version:
A Mapbox GL react native module for creating custom maps
16 lines (13 loc) • 332 B
JavaScript
import React from 'react';
class AbstractSource extends React.PureComponent {
setNativeProps(props) {
if (this._nativeRef) {
this._nativeRef.setNativeProps(props);
} else {
if (this.refs.nativeSource) {
this.refs.nativeSource.setNativeProps(props);
}
}
}
}
export default AbstractSource;