Skip to content

Commit

Permalink
Moved utils.js into lib to be used also in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Lane committed Feb 19, 2016
1 parent add2aff commit cc99d9a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/async-data/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import Autocomplete from '../../lib/index'
import { getStates, matchStateToTerm, sortStates, styles, fakeRequest } from '../utils'
import { getStates, matchStateToTerm, sortStates, styles, fakeRequest } from '../../lib/utils'

let App = React.createClass({

Expand Down
2 changes: 1 addition & 1 deletion examples/custom-menu/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import Autocomplete from '../../lib/index'
import { getStates, matchStateToTerm, sortStates, styles, fakeRequest } from '../utils'
import { getStates, matchStateToTerm, sortStates, styles, fakeRequest } from '../../lib/utils'

let App = React.createClass({

Expand Down
2 changes: 1 addition & 1 deletion examples/static-data/app.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { getStates, matchStateToTerm, sortStates, styles } from '../utils'
import { getStates, matchStateToTerm, sortStates, styles } from '../../lib/utils'
import Autocomplete from '../../lib/index'

let App = React.createClass({
Expand Down
File renamed without changes.

0 comments on commit cc99d9a

Please sign in to comment.