> ``` > package main > > templ Hello(name string){ >
Hello, { name }
> } > > templ Greeting(person Person){ >
> @Hello(person.Name) >
> } > ```