Skip to content

Commit

Permalink
reorder function
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilad Gray authored Aug 22, 2018
1 parent 8d3a43d commit 9139a8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/datetime/src/dateRangePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,10 @@ export class DateRangePicker extends AbstractPureComponent<IDateRangePickerProps
];
}

private maybeRenderTimePickers() {
// TODO: fill me in!
}

private renderCalendars(isShowingOneMonth: boolean) {
const { contiguousCalendarMonths, dayPickerProps, locale, localeUtils, maxDate, minDate } = this.props;
const dayPickerBaseProps: DayPickerProps = {
Expand Down Expand Up @@ -332,10 +336,6 @@ export class DateRangePicker extends AbstractPureComponent<IDateRangePickerProps
}
}

private maybeRenderTimePickers() {
// TODO: fill me in!
}

private renderNavbar = (navbarProps: NavbarElementProps) => (
<DatePickerNavbar {...navbarProps} maxDate={this.props.maxDate} minDate={this.props.minDate} />
);
Expand Down

1 comment on commit 9139a8d

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

reorder function

Preview: documentation | landing | table

Please sign in to comment.