Skip to content

Commit

Permalink
move import to top
Browse files Browse the repository at this point in the history
  • Loading branch information
echenley committed Nov 1, 2015
1 parent 9422bd5 commit e9580bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/actions/Actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import Reflux from 'reflux';
import Firebase from 'firebase';
import { firebaseUrl } from '../util/constants';

// used to create email hash for gravatar
import md5 from 'md5';

const baseRef = new Firebase(firebaseUrl);
const commentsRef = baseRef.child('comments');
const postsRef = baseRef.child('posts');
const usersRef = baseRef.child('users');

// used to create email hash for gravatar
import md5 from 'md5';

const Actions = Reflux.createActions([
// user actions
'login',
Expand Down

0 comments on commit e9580bc

Please sign in to comment.