2025-06-16 18:28:08 +05:00

9 lines
156 B
Plaintext
Executable File

---
const visible = true;
const name = "Legend Sabbir"
---
{visible && <p>Show me!</p>}
{visible ? <p>Show me!</p> : <p>Else show me!</p>}
<h1>{name}</h1>