Skip to content

Commit

Permalink
Merge pull request #1152 from toufiqulislamtanmoy/patch-2
Browse files Browse the repository at this point in the history
Basic Of Conditonal Rendering
  • Loading branch information
zonayedpca authored Oct 28, 2024
2 parents 679e985 + 5224a6b commit 824cbda
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions data/react-cheat-sheet.json
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,27 @@
"code": "useEffect(() => {\n// Update the document title using the browser API \ndocument.title = `You clicked ${count} times`;\n});"
}
]
},
{
"title": "রিঅ্যাক্ট JS এ কন্ডিশনাল রেন্ডারিং (Conditional Rendering)",
"iitems": [
{
"definition": "একটি কন্ডিশন তৈরী করা যেই কন্ডিসনে রেন্ডারিং নির্ভর করবে",
"code": "const isLoggedIn = true;"
},
{
"definition": "একটি কন্ডিশনাল এক্সপ্রেশন ব্যবহার করে ভিন্ন JSX রেন্ডার করা",
"code": "const greeting = isLoggedIn ? <h1>Welcome Back!</h1> : <h1>Please Sign In</h1>;"
},
{
"definition": "logical && অপারেটর ব্যবহার করে কন্ডিশনাল রেন্ডারিং করা - যখন কন্ডিশনটি true হবে তখনই JSX রেন্ডার হবে",
"code": "isLoggedIn && <h1>Welcome Back!</h1>"
},
{
"definition": "logical || অপারেটর ব্যবহার করে কন্ডিশনাল রেন্ডারিং করা - যখন কন্ডিশনটি false হবে তখনই অন্যটি রেন্ডার হবে",
"code": "const greeting = isLoggedIn || <h1>Please Sign In</h1>;"
},
],
}
]
}

0 comments on commit 824cbda

Please sign in to comment.