Horizontal timeline with cute hover transition
Forked from Charlotte Dann's Pen Timeline.
A Pen by Carlos Perez on CodePen.
Horizontal timeline with cute hover transition
Forked from Charlotte Dann's Pen Timeline.
A Pen by Carlos Perez on CodePen.
var LoginWithTwitter = React.createClass({ | |
getInitialState: function() { | |
return {loggedIn: false}; | |
}, | |
login: function (e) { | |
var that = this; | |
Meteor.loginWithTwitter(function() { | |
that.setState({ loggedIn: true }); | |
}); |