Files
react/perf/lib/todolist.html
T
Paul O’Shannessy f53854bd93 React.renderComponent -> React.render
This covers most everything. The perf suite still needs work for the
Element updates. And the server rendering example needs to be done
wholesale.
2014-10-23 20:51:11 -07:00

17 lines
395 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>todolist</title>
<script src="perf-test-runner.browser.js"></script>
<script> perfRunner.Polyfill(); </script>
<script src="../../build/react.min.js"></script>
<script src="todolist.browser.js"></script>
<script>
function main(){
var app = todolist.App({ fakeDataCount:333 });
React.render(app, document.body);
}
window.onload = main;
</script>