Skip to content

Commit 1f08fed

Browse files
Merge branch 'master' of https://github.com/reactjs/reactjs.org into sync-e0a0ec3d
2 parents 745f314 + e0a0ec3 commit 1f08fed

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

Diff for: content/community/conferences.md

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ December 6, 2019 in Berlin, Germany
2222

2323
[Website](https://reactday.berlin) - [Twitter](https://twitter.com/reactdayberlin) - [Facebook](https://www.facebook.com/reactdayberlin/) - [Videos](https://www.youtube.com/reactdayberlin)
2424

25+
### React Barcamp Cologne 2020 {#react-barcamp-cologne-2020}
26+
February 1-2, 2020 in Cologne, Germany
27+
28+
[Website](https://react-barcamp.de/) - [Twitter](https://twitter.com/ReactBarcamp) - [Facebook](https://www.facebook.com/reactbarcamp)
29+
2530
### ReactConf AU 2020 {#reactconfau}
2631
February 27 & 28, 2020 in Sydney, Australia
2732

Diff for: content/community/meetups.md

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ Do you have a local React.js meetup? Add it here! (Please keep the list alphabet
6161
* [Paris](https://www.meetup.com/ReactJS-Paris/)
6262

6363
## Germany {#germany}
64+
* [Cologne](https://www.meetup.com/React-Cologne/)
6465
* [Düsseldorf](https://www.meetup.com/de-DE/ReactJS-Meetup-Dusseldorf/)
6566
* [Hamburg](https://www.meetup.com/Hamburg-React-js-Meetup/)
6667
* [Karlsruhe](https://www.meetup.com/react_ka/)

Diff for: content/docs/hooks-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ function FancyInput(props, ref) {
450450
FancyInput = forwardRef(FancyInput);
451451
```
452452

453-
In this example, a parent component that renders `<FancyInput ref={fancyInputRef} />` would be able to call `fancyInputRef.current.focus()`.
453+
In this example, a parent component that renders `<FancyInput ref={inputRef} />` would be able to call `inputRef.current.focus()`.
454454

455455
### `useLayoutEffect` {#uselayouteffect}
456456

0 commit comments

Comments
 (0)