From 8efedd6af4af7e143e052937a2ce490c0ce392cd Mon Sep 17 00:00:00 2001 From: Fernando Rojo Date: Fri, 4 Dec 2020 17:16:13 -0500 Subject: [PATCH] Add named exports This closes #34, since `react-native-maps` uses named exports. --- src/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.js b/src/index.js index dab5f226..0e5f8ee1 100755 --- a/src/index.js +++ b/src/index.js @@ -103,6 +103,12 @@ MapView.Marker = Marker; MapView.Polyline = Polyline; MapView.Callout = Callout; +export { + Marker, + Polyline, + Callout +} + const styles = StyleSheet.create({ container: { height: '100%',