diff --git a/Examples/UIExplorer/js/UIExplorerApp.android.js b/Examples/UIExplorer/js/UIExplorerApp.android.js
index c9359589c..35c96cb55 100644
--- a/Examples/UIExplorer/js/UIExplorerApp.android.js
+++ b/Examples/UIExplorer/js/UIExplorerApp.android.js
@@ -151,29 +151,31 @@ class UIExplorerApp extends React.Component {
if (stack && stack.routes[index]) {
const {key} = stack.routes[index];
const ExampleModule = UIExplorerList.Modules[key];
- return (
-
- this.drawer.openDrawer()}
- style={styles.toolbar}
- title={title}
- />
- { this._exampleRef = example; }}
- />
-
- );
+ if (ExampleModule) {
+ return (
+
+ this.drawer.openDrawer()}
+ style={styles.toolbar}
+ title={title}
+ />
+ { this._exampleRef = example; }}
+ />
+
+ );
+ }
}
return (