codex-lv3-may-2025

Kata 1: Simple Greeting Component

Concept: Basic component and JSX

Challenge

Create a React component called Greeting that displays โ€œHello, World!โ€ in an <h1> tag.

๐Ÿ”— Practice on CodeSandbox

Expected Output

When rendered, it should display:

Hello, World!

Starter Code

export default function Greeting() {
  // Your code here
}

Solution

Click to reveal solution
export default function Greeting() {
  return <h1>Hello, World!</h1>;
}

Concept Review


โ† Back to Kata Index