mirror of
https://github.com/sammyshear/trivia-chase.git
synced 2025-12-06 03:55:53 +00:00
15 lines
339 B
Plaintext
15 lines
339 B
Plaintext
package pages
|
|
|
|
import (
|
|
l "github.com/sammyshear/trivia-chase/views/layout"
|
|
)
|
|
|
|
templ Home() {
|
|
@l.BaseLayout(l.PageInfo{Title: "Trivia Chase"}) {
|
|
<div @click.capture="console.log('I will log first')" x-data="">
|
|
Hello, World!
|
|
<button @click="console.log('I will log second')" class="bg-green-200 p-5">Hello!</button>
|
|
</div>
|
|
}
|
|
}
|