Skip to content

Instantly share code, notes, and snippets.

@aakashns
Created March 22, 2017 16:31
Show Gist options
  • Select an option

  • Save aakashns/365d3cdb59f58fb91b5631579d97063a to your computer and use it in GitHub Desktop.

Select an option

Save aakashns/365d3cdb59f58fb91b5631579d97063a to your computer and use it in GitHub Desktop.
First version of fromDb
const fromDb = (db, dispatch) => {
db.ref('/message').on('value', data => {
if (data.val()) {
dispatch({ type: 'SET_MESSAGE', payload: data.val() });
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment