// src/components/Hello.tsx import * as React from "react"; function Hello({ name, enthusiasmLevel }) { if (enthusiasmLevel <= 0) { throw new Error("You could be a little more enthusiastic. :D"); } return (