DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-web

ref: 14e0729381328bc2af9840dce46025c829b2aa2c emerwen-web/internal/components/error.templ -rw-r--r-- 203 bytes
14e07293Jonni Liljamo fix(components): better base layout a day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
package components

import "strconv"

templ Error(c int, m string) {
	@Base("emerwen") {
		<div class="flex flex-col gap-2">
			<p class="font-bold">{ strconv.Itoa(c) }</p>
			<p>{ m }</p>
		</div>
	}
}