Skip to content
Snippets Groups Projects
Unverified Commit ae49b715 authored by Jordan Harband's avatar Jordan Harband
Browse files

[examples] use constants from src, not lib

Fixes #818.
parent 9475ca56
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ import DateRangePicker from '../src/components/DateRangePicker';
import { DateRangePickerPhrases } from '../src/defaultPhrases';
import DateRangePickerShape from '../src/shapes/DateRangePickerShape';
import { START_DATE, END_DATE, HORIZONTAL_ORIENTATION, ANCHOR_LEFT } from '../constants';
import { START_DATE, END_DATE, HORIZONTAL_ORIENTATION, ANCHOR_LEFT } from '../src/constants';
import isInclusivelyAfterDay from '../src/utils/isInclusivelyAfterDay';
const propTypes = {
......
......@@ -10,7 +10,7 @@ import DayPickerRangeController from '../src/components/DayPickerRangeController
import ScrollableOrientationShape from '../src/shapes/ScrollableOrientationShape';
import { START_DATE, END_DATE, HORIZONTAL_ORIENTATION } from '../constants';
import { START_DATE, END_DATE, HORIZONTAL_ORIENTATION } from '../src/constants';
import isInclusivelyAfterDay from '../src/utils/isInclusivelyAfterDay';
const propTypes = forbidExtraProps({
......
......@@ -10,7 +10,7 @@ import DayPickerSingleDateController from '../src/components/DayPickerSingleDate
import ScrollableOrientationShape from '../src/shapes/ScrollableOrientationShape';
import { HORIZONTAL_ORIENTATION } from '../constants';
import { HORIZONTAL_ORIENTATION } from '../src/constants';
import isInclusivelyAfterDay from '../src/utils/isInclusivelyAfterDay';
const propTypes = forbidExtraProps({
......
......@@ -8,7 +8,7 @@ import SingleDatePicker from '../src/components/SingleDatePicker';
import { SingleDatePickerPhrases } from '../src/defaultPhrases';
import SingleDatePickerShape from '../src/shapes/SingleDatePickerShape';
import { HORIZONTAL_ORIENTATION, ANCHOR_LEFT } from '../constants';
import { HORIZONTAL_ORIENTATION, ANCHOR_LEFT } from '../src/constants';
import isInclusivelyAfterDay from '../src/utils/isInclusivelyAfterDay';
const propTypes = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment