Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. handleLogin = () => {
  2. Meteor.loginWithPassword(this.state.loginField,this.state.passwordField,(error)=>{
  3. if (!error) {
  4. Meteor.subscribe('customer')
  5. let data = Meteor.collection('customers').findOne();
  6. console.log(data);
  7. }
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement