package once var helloHandle = templ.NewOnceHandle() templ hello(label, name string) { @helloHandle.Once() { } } templ render() { @hello("Hello User", "user") @hello("Hello World", "world") }