Skip to content

Sync with reactjs.org @ 5849f604 #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/community/tools-misc.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permalink: community/misc.html

* **[react-inspector](https://github.com/xyc/react-inspector):** Use DevTools-like object inspectors inside your React app.
* **[jreact](https://github.com/KnisterPeter/jreact):** Rendering react server-side within a JVM (Java 7 or Java 8)
* **[react-jss](https://github.com/jsstyles/react-jss):** Inject and mount jss styles in React components.
* **[react-jss](https://github.com/cssinjs/jss/tree/master/packages/react-jss):** Inject and mount jss styles in React components.
* **[django-react](https://github.com/markfinger/django-react):** Server-side rendering of React components for django apps.
* **[react-engine](https://github.com/paypal/react-engine):** Composite render engine for isomorphic express apps to render both plain react views and react-router views.
* **[react-render-visualizer](https://github.com/redsunsoft/react-render-visualizer):** A visual way to see what is (re)rendering and why.
Expand Down
8 changes: 4 additions & 4 deletions content/docs/accessibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,13 +284,13 @@ class OuterClickExample extends React.Component {
return (
<div ref={this.toggleContainer}>
<button onClick={this.onClickHandler}>Wybierz opcję</button>
{this.state.isOpen ? (
{this.state.isOpen && (
<ul>
<li>Opcja 1</li>
<li>Opcja 2</li>
<li>Opcja 3</li>
</ul>
) : null}
)}
</div>
);
}
Expand Down Expand Up @@ -351,13 +351,13 @@ class BlurExample extends React.Component {
aria-expanded={this.state.isOpen}>
Wybierz opcję
</button>
{this.state.isOpen ? (
{this.state.isOpen && (
<ul>
<li>Opcja 1</li>
<li>Opcja 2</li>
<li>Opcja 3</li>
</ul>
) : null}
)}
</div>
);
}
Expand Down