diff --git a/content/community/conferences.md b/content/community/conferences.md index 31cb6aa6d..52f890cda 100644 --- a/content/community/conferences.md +++ b/content/community/conferences.md @@ -22,6 +22,7 @@ October 7-8, 2021. In-person in Amsterdam, Netherlands + remote (hybrid event) [Website](https://www.reactlive.nl/) - [Twitter](https://twitter.com/reactlivenl) - [LinkedIn](https://www.linkedin.com/company/frontendlove/) + ### React Brussels 2021 {#react-brussels-2021} October 15, 2021 - remote event diff --git a/content/docs/handling-events.md b/content/docs/handling-events.md index 9ad78ddf8..c0e4caf8b 100644 --- a/content/docs/handling-events.md +++ b/content/docs/handling-events.md @@ -30,6 +30,7 @@ sẽ có đôi chút khác biệt trong React: ``` Một điểm khác biệt nữa trong React là bạn không thể trả về `false` để chặn những hành vi mặc định mà phải gọi `preventDefault` trực tiếp. Lấy ví dụ với đoạn HTML sau, để chặn hành vi mặc định của đường dẫn là mở trang mới, bạn có thể viết: + ```html
diff --git a/content/docs/thinking-in-react.md b/content/docs/thinking-in-react.md index bbdf011dc..4d6cf8572 100644 --- a/content/docs/thinking-in-react.md +++ b/content/docs/thinking-in-react.md @@ -42,7 +42,6 @@ Vì mô hình dữ liệu thường hiển thị dưới dạng chuỗi JSON, n ![Sơ đồ Component](../images/blog/thinking-in-react-components.png) Trong ứng dụng dưới đây, bạn sẽ thấy chúng ta có 5 component, dữ liệu mà mỗi component hiển thị sẽ được in nghiêng - 1. **`FilterableProductTable` (orange):** chứa toàn bộ cả ứng dụng 2. **`SearchBar` (blue):** nơi *người dùng nhập từ khoá tìm kiếm* 3. **`ProductTable` (green):** lọc và hiển thị *kết quả* dựa trên *từ khoá tìm kiếm* diff --git a/content/images/blog/thinking-in-react-components.png b/content/images/blog/thinking-in-react-components.png index c71a86bcb..a8b2b2e12 100644 Binary files a/content/images/blog/thinking-in-react-components.png and b/content/images/blog/thinking-in-react-components.png differ diff --git a/src/components/Banner/Banner.js b/src/components/Banner/Banner.js index 9c7b2ed68..1b2cce6ee 100644 --- a/src/components/Banner/Banner.js +++ b/src/components/Banner/Banner.js @@ -11,7 +11,7 @@ import {colors, fonts, media} from 'theme'; import ExternalLinkSvg from 'templates/components/ExternalLinkSvg'; const linkProps = { - href: 'https://www.surveymonkey.co.uk/r/673TZ7T', + href: 'https://surveys.savanta.com/survey/selfserve/21e3/210643?list=2', target: '_blank', rel: 'noopener', }; @@ -135,7 +135,7 @@ export default function Banner() { target="_blank" rel="noopener"> - Take our 2020 Community Survey! + Take our 2021 Community Survey! { } activeBanner = { - storageId: 'reactjs_banner_2020survey', + storageId: 'reactjs_banner_2021survey', normalHeight: 50, smallHeight: 75, - campaignStartDate: '2020-10-05T00:00:00Z', // the Z is for UTC - campaignEndDate: '2020-10-19T00:00:00Z', // the Z is for UTC + campaignStartDate: '2021-08-16T00:00:00Z', // the Z is for UTC + campaignEndDate: '2021-08-31T00:00:00Z', // the Z is for UTC snoozeForDays: 7, };