|
@@ -17,6 +17,7 @@ const SideMenuScreen = require('./SideMenuScreen');
|
17
|
17
|
const TopTabScreen = require('./TopTabScreen');
|
18
|
18
|
const TopTabOptionsScreen = require('./TopTabOptionsScreen');
|
19
|
19
|
const CustomTopBar = require('./CustomTopBar');
|
|
20
|
+const Alert = require('./Alert');
|
20
|
21
|
|
21
|
22
|
function registerScreens() {
|
22
|
23
|
Navigation.registerComponent(`navigation.playground.CustomTransitionDestination`, () => CustomTransitionDestination);
|
|
@@ -37,6 +38,7 @@ function registerScreens() {
|
37
|
38
|
Navigation.registerComponent('navigation.playground.TopTabScreen', () => TopTabScreen);
|
38
|
39
|
Navigation.registerComponent('navigation.playground.TopTabOptionsScreen', () => TopTabOptionsScreen);
|
39
|
40
|
Navigation.registerComponent('navigation.playground.CustomTopBar', () => CustomTopBar);
|
|
41
|
+ Navigation.registerComponent('navigation.playground.alert', () => Alert);
|
40
|
42
|
}
|
41
|
43
|
|
42
|
44
|
module.exports = {
|