UNPKG

unicorn-demo-app

Version:

11 lines (9 loc) 629 B
import {Navigation} from 'react-native-navigation'; import BasicListScreen from './BasicListScreen'; import ContactsListScreen from './ContactsListScreen'; import ConversationListScreen from './ConversationListScreen'; import GridListScreen from './GridListScreen'; Navigation.registerComponent('unicorn.lists.BasicListScreen', () => BasicListScreen); Navigation.registerComponent('unicorn.lists.ContactsListScreen', () => ContactsListScreen); Navigation.registerComponent('unicorn.lists.ConversationListScreen', () => ConversationListScreen); Navigation.registerComponent('unicorn.lists.GridListScreen', () => GridListScreen);