1. What is React and JSX?
React is a declarative, component-based JavaScript library created by Meta for building dynamic, high-performance user interfaces.
⊞HTML5 Web Code (index.html)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>React JSX Preview</title>
</head>
<body style="background:#17181c; color:#fff; font-family:Arial; padding:30px;">
<h2>React Component Output</h2>
<div id="root" style="padding:20px; background:#1f2029; border:1px solid #04AA6D; border-radius:12px;">
<h3 style="color:#04AA6D; margin:0 0 10px 0;">⚛️ Welcome to React.js</h3>
<p style="margin:0; color:#ddd;">Components encapsulate structure, style, and state into reusable building blocks.</p>
</div>
</body>
</html>
