Skip to content

Instantly share code, notes, and snippets.

View carl0zen's full-sized avatar

Carlo Zen carl0zen

  • Monterrey, Mexico
View GitHub Profile
@carl0zen
carl0zen / meteor-login-with-twitter.jsx
Last active August 29, 2015 14:17
Meteor React LoginWithTwitter Component
var LoginWithTwitter = React.createClass({
getInitialState: function() {
return {loggedIn: false};
},
login: function (e) {
var that = this;
Meteor.loginWithTwitter(function() {
that.setState({ loggedIn: true });
});