Tim Routowicz

Results 28 comments of Tim Routowicz

Here's another example. It shows how to use socket.io with alt and use @goatslacker's iso library in an isomorphic app. It also has user authentication and some db operations. https://github.com/troutowicz/geoshare

See https://github.com/ericelliott/stampit/issues/66 for stampit/React discussion

Awesome, I'll take a closer look at this soon!

We still need to figure out why `ReactCSSTransitionGroup` is broke.

Another issue I forgot to mention is the ListItem on click ripple color needs to be tweaked.

I have not, my schedule has been and will be packed through mid this week. Let me know what your investigations turn up. :)

Without having looked at Radium's source, it sounds like it expects React components to be constructor functions. If that is true, then yes, this is an API incompatibility.

I hadn't investigated this any further, but I'll take a look now. Thanks @ianobermiller.

I'm also thinking of a utility method that makes the core stampit library available, for times when a mixin may not need to be a React component. Would eliminate the...

``` js import stampit from 'react-stampit'; const nonReactStampMixin = stamit.stampit({ foo() {} }); const reactStampMixin = stampit(Render, { propTypes: {} }); const reactStamp = stampit(Render, { render() {} }).compose(nonReactStampMixin, reactStampMixin);...