Files
react-native-mapbox-gl/javascript/index.js
T
2017-09-26 20:12:07 -07:00

14 lines
293 B
JavaScript

import { NativeModules } from 'react-native';
import MapView from './components/MapView';
import * as geoUtils from './utils/geoUtils';
let MapboxGL = { ...NativeModules.MGLModule };
// components
MapboxGL.MapView = MapView;
// utils
MapboxGL.geoUtils = geoUtils;
export default MapboxGL;