interface Props { name: string; } export const HelloWorld = ({ name }: Props) => { return
Hello {name}
; };