Skip to content

Commit

Permalink
Initial add of React TodoMVC to labs
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
petehunt committed Jun 17, 2013
1 parent f22dbf8 commit 37589b3
Show file tree
Hide file tree
Showing 16 changed files with 20,127 additions and 0 deletions.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ <h2>JavaScript Apps</h2>
<li class="routing labs">
<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>
</li>
<li class="routing labs">
<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>
</li>
</ul>
<hr>
<h2>Compile To JavaScript</h2>
Expand Down
8 changes: 8 additions & 0 deletions labs/architecture-examples/react/bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "todomvc-react",
"version": "0.0.0",
"dependencies": {
"todomvc-common": "~0.1.7",
"react": "~0.3.2"
}
}

0 comments on commit 37589b3

Please sign in to comment.