React•8 min read
Components and JSX
C
Coding Dimension
Aug 11, 2026
Build UI with React components and JSX syntax.
Components
A React component is a function that returns UI. JSX looks like HTML but compiles to JavaScript.
export function Hello({ name }) {
return <h1>Hello, {name}</h1>;
}
Composition
Break UI into small components and compose them. Keep props simple and predictable.
Last updated on 8/11/2026
