File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ import AgendaScreen from './agendaScreen';
66import CalendarsList from './calendarsList' ;
77import HorizontalCalendarList from './horizontalCalendarList' ;
88import ExpandableCalendarScreen from './expandableCalendarScreen' ;
9- import TimelineCalendar from './timelineCalendarScreen' ;
9+ import TimelineCalendarScreen from './timelineCalendarScreen' ;
1010
1111export function registerScreens ( ) {
1212 Navigation . registerComponent ( 'Menu' , ( ) => MenuScreen ) ;
1313 Navigation . registerComponent ( 'Calendars' , ( ) => CalendarsScreen ) ;
1414 Navigation . registerComponent ( 'Agenda' , ( ) => AgendaScreen ) ;
1515 Navigation . registerComponent ( 'CalendarsList' , ( ) => CalendarsList ) ;
1616 Navigation . registerComponent ( 'HorizontalCalendarList' , ( ) => HorizontalCalendarList ) ;
17- Navigation . registerComponent ( 'ExpandableCalendarScreen ' , ( ) => ExpandableCalendarScreen ) ;
18- Navigation . registerComponent ( 'TimelineCalendar' , ( ) => TimelineCalendar ) ;
17+ Navigation . registerComponent ( 'ExpandableCalendar ' , ( ) => ExpandableCalendarScreen ) ;
18+ Navigation . registerComponent ( 'TimelineCalendar' , ( ) => TimelineCalendarScreen ) ;
1919}
Original file line number Diff line number Diff line change @@ -41,9 +41,9 @@ export default class MenuScreen extends Component<Props> {
4141 { this . renderEntry ( testIDs . menu . CALENDAR_LIST , 'Calendar List' , 'CalendarsList' ) }
4242 { this . renderEntry ( testIDs . menu . HORIZONTAL_LIST , 'Horizontal Calendar List' , 'HorizontalCalendarList' ) }
4343 { this . renderEntry ( testIDs . menu . AGENDA , 'Agenda' , 'Agenda' ) }
44- { this . renderEntry ( testIDs . menu . EXPANDABLE_CALENDAR , 'Expandable Calendar' , 'ExpandableCalendarScreen ' ) }
44+ { this . renderEntry ( testIDs . menu . EXPANDABLE_CALENDAR , 'Expandable Calendar' , 'ExpandableCalendar ' ) }
4545 { this . renderEntry ( testIDs . menu . TIMELINE_CALENDAR , 'Timeline Calendar' , 'TimelineCalendar' ) }
46- { this . renderEntry ( testIDs . menu . WEEK_CALENDAR , 'Week Calendar' , 'ExpandableCalendarScreen ' , { weekView : true } ) }
46+ { this . renderEntry ( testIDs . menu . WEEK_CALENDAR , 'Week Calendar' , 'ExpandableCalendar ' , { weekView : true } ) }
4747 < View style = { styles . switchContainer } >
4848 < Text > Force RTL</ Text >
4949 < Switch value = { this . state . forceRTL } onValueChange = { this . toggleRTL } />
You can’t perform that action at this time.
0 commit comments