Skip to content

Commit 37589b3

Browse files
committed
Initial add of React TodoMVC to labs
React is a JavaScript library for building user interfaces by Facebook and Instagram. It powers many components on Facebook.com and all of Instagram.com is written with it. We have two TodoMVC examples checked into our repo: this one, which has no dependencies, and another one which showcases Backbone integration. I've only included the first one for now, if you guys think it's a good idea I can put out a PR for the one with Backbone integration. I read the contributing guide and I think this meets the standards, let me know if I missed something.
1 parent f22dbf8 commit 37589b3

File tree

16 files changed

+20127
-0
lines changed

16 files changed

+20127
-0
lines changed

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,9 @@ <h2>JavaScript Apps</h2>
144144
<li class="routing labs">
145145
<a href="architecture-examples/angularjs-perf/" data-source="http://angularjs.org" data-content="What HTML would have been had it been designed for web apps. A version with several performance optimizations.">AngularJS <br>(optimized)</a>
146146
</li>
147+
<li class="routing labs">
148+
<a href="labs/architecture-examples/react/" data-source="http://facebook.github.io/react/" data-content="React is a JavaScript library for building user interfaces.">React</a>
149+
</li>
147150
</ul>
148151
<hr>
149152
<h2>Compile To JavaScript</h2>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "todomvc-react",
3+
"version": "0.0.0",
4+
"dependencies": {
5+
"todomvc-common": "~0.1.7",
6+
"react": "~0.3.2"
7+
}
8+
}

0 commit comments

Comments
 (0)