Skip to content

Commit

Permalink
Merge pull request #104 from asamiller/patch-1
Browse files Browse the repository at this point in the history
Fix: wrong module name in basic example
  • Loading branch information
Claudéric Demers authored Dec 1, 2016
2 parents 55ce2a0 + 8e41fb5 commit 5b3c094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/basic.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, {Component} from 'react';
import {render} from 'react-dom';
import {SortableContainer, SortableElement, arrayMove} from 'react-sortable-list-hoc';
import {SortableContainer, SortableElement, arrayMove} from 'react-sortable-hoc';

const SortableItem = SortableElement(({value}) => <li>{value}</li>);

Expand Down

0 comments on commit 5b3c094

Please sign in to comment.