mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
f53854bd93
This covers most everything. The perf suite still needs work for the Element updates. And the server rendering example needs to be done wholesale.
17 lines
395 B
HTML
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>
|