Welcome to the React.js & Modern Frontend Architecture Course!
1. What is React.js?
2. What is JSX (JavaScript XML)?
JSX is a syntax extension for JavaScript that allows you to write HTML-like markup directly inside your JavaScript code.
⊞Code Example
function WelcomeBanner() {
const student = "Developer";
return (
<div className="p-6 bg-slate-900 border border-emerald-500 rounded-2xl text-white">
<h1 className="text-2xl font-black text-emerald-400">Welcome, {student}!</h1>
<p className="text-sm text-slate-300">Ready to build reactive React applications.</p>
</div>
);
}
export default WelcomeBanner;
