platzi / ejemplo-reflux

18 stars 25 forks source link

Fixed an import name in the file that it was referencing 'imagestore'… #3

Open nkvenom opened 9 years ago

nkvenom commented 9 years ago

In the file ImageGrid.js the import line was:

import ImageStore from '../stores/imagestore';

So I changed it to:

import ImageStore from '../stores/ImageStore';

Now npm run build works at expected

ntourne commented 8 years ago

Good catch @nkvenom. I found same problem.