Skip to content

Instantly share code, notes, and snippets.

View znation's full-sized avatar

Zach Nation znation

View GitHub Profile
var Authenticated = React.createClass({
statics: {
willTransitionTo (transition) {
if (!authenticated()) {
transition.redirect('login');
}
}
}
});