Skip to content

Commit

Permalink
remove comments about React 0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
omnidan committed Oct 15, 2015
1 parent 83992b5 commit 7f14a1e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions docs/basics/ExampleTodoList.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ let store = createStore(todoApp);

let rootElement = document.getElementById('root');
render(
// The child must be wrapped in a function
// to work around an issue in React 0.13.
<Provider store={store}>
<App />
</Provider>,
Expand Down
2 changes: 0 additions & 2 deletions docs/basics/UsageWithReact.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,6 @@ let store = createStore(todoApp);

let rootElement = document.getElementById('root');
render(
// The child must be wrapped in a function
// to work around an issue in React 0.13.
<Provider store={store}>
<App />
</Provider>,
Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/WritingTests.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ can be tested like:
```js
import expect from 'expect';
import jsdomReact from '../jsdomReact';
import React from 'react/addons';
import React from 'react';
import Header from '../../components/Header';
import TodoTextInput from '../../components/TodoTextInput';

Expand Down

0 comments on commit 7f14a1e

Please sign in to comment.