learnlytics-go/templ/examples/hello-world-ssr/main.go

18 lines
230 B
Go
Raw Normal View History

2025-03-20 12:35:13 +01:00
package main
import (
"fmt"
"net/http"
"github.com/a-h/templ"
)
func main() {
component := hello("John")
http.Handle("/", templ.Handler(component))
fmt.Println("Listening on :3000")
http.ListenAndServe(":3000", nil)
}