Comments on: What is React? https://j11y.io/javascript/what-is-react/ Sun, 22 Mar 2015 15:39:22 +0000 hourly 1 https://wordpress.org/?v=5.0.13 By: Ruben https://j11y.io/javascript/what-is-react/#comment-2683 Thu, 12 Jun 2014 15:20:21 +0000 https://j11y.io/?p=2427#comment-2683 Hi, i’m quite new to react and i really like the idea of having a virtual DOM and not having dependencies like jquery, but i really don’t like having the logic/model in a big react component. Do you have or know where i can find an implementation of MVVM or something similar with react?

]]>
By: Tony https://j11y.io/javascript/what-is-react/#comment-2682 Sat, 01 Mar 2014 10:41:04 +0000 https://j11y.io/?p=2427#comment-2682 React.js is very interesting, good read, thanks for sharing.

]]>
By: Duncan Smart https://j11y.io/javascript/what-is-react/#comment-2680 Mon, 06 Jan 2014 12:09:46 +0000 https://j11y.io/?p=2427#comment-2680 @Daniel – I think James’ example is more useful (and probably intentional) as it implies/demonstrates that the stuff in the curly braces is a JavaScript expression.

]]>
By: Daniel Lo Nigro https://j11y.io/javascript/what-is-react/#comment-2679 Mon, 06 Jan 2014 02:37:13 +0000 https://j11y.io/?p=2427#comment-2679 For your first example, this should work as well:

return <div>Hello {this.props.name}</div>;

It will compile to the same thing, but I think it looks cleaner without the string concatenation 🙂

]]>