From c209465d76c26dd5636505fd1882d8a60c3c6cca Mon Sep 17 00:00:00 2001 From: Surjith S M Date: Thu, 26 May 2022 20:35:33 +0530 Subject: [PATCH] Change text "Click me" to somthing else (#4697) The Text "Click me" in the button confuses first-time users because it forces them to actually click on the button in the live demo but it does nothing. By changing the text, we can control the user behavior as they don't expect anything on that click. --- beta/src/pages/learn/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beta/src/pages/learn/index.md b/beta/src/pages/learn/index.md index 8caf702d..c9f8efbd 100644 --- a/beta/src/pages/learn/index.md +++ b/beta/src/pages/learn/index.md @@ -28,7 +28,7 @@ React components are JavaScript functions that return markup: ```js function MyButton() { return ( - + ); } ``` @@ -56,7 +56,7 @@ Have a look at the result: function MyButton() { return ( ); }