Skip to content
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