12 lines
138 B
Go
12 lines
138 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
component := hello("John")
|
||
|
component.Render(context.Background(), os.Stdout)
|
||
|
}
|