import { createElement } from "react" // Props in, element out. The `id` is the handle the render assertions match on. export function Hello({ name }) { return createElement("div", { id: "greeting" }, `Hello, ${name}!`) }