@@ -8,6 +8,16 @@ Documentation
88
99- [ Basic usage] ( #basic-usage )
1010- [ Installation] ( #installation )
11+ - [ ReactComponent] ( #reactcomponent )
12+ - [ render_to_string()] ( #reactcomponentrender_to_string )
13+ - [ render_to_static_markup()] ( #reactcomponentrender_to_static_markup )
14+ - [ render_js()] ( #reactcomponentrender_js )
15+ - [ render_container()] ( #reactcomponentrender_container )
16+ - [ render_props()] ( #reactcomponentrender_props )
17+ - [ render_source()] ( #reactcomponentrender_source )
18+ - [ render_init()] ( #reactcomponentrender_init )
19+ - [ ReactBundle] ( #reactbundle )
20+ - [ render_component()] ( #render_component )
1121- [ Running the tests] ( #running-the-tests )
1222
1323Basic usage
@@ -50,12 +60,6 @@ The rendered JavaScript will automatically include:
5060The user will see the rendered component immediately and React will automatically
5161start to add interactivity as the page loads the JavaScript.
5262
53- Dependencies
54- ------------
55-
56- - Node.js >= 0.10.0
57- - NPM >= 1.2.0
58-
5963Installation
6064------------
6165
@@ -72,10 +76,6 @@ INSTALLED_APPS = (
7276)
7377```
7478
75- Note: You may experience a short, once-off pause when you first attempt to boot Django.
76- The pause is caused by NPM installing the JavaScript libraries which Django React
77- requires to operate.
78-
7979ReactComponent
8080--------------
8181
@@ -201,7 +201,7 @@ class MyComponent(ReactComponent):
201201```
202202
203203render_component()
204- --------------
204+ ------------------
205205
206206Render a component to its initial HTML. You can use this method to generate HTML
207207on the server and send the markup down on the initial request for faster page loads
0 commit comments