mirror of https://git.jolheiser.com/ugit.git
11 lines
207 B
Plaintext
11 lines
207 B
Plaintext
|
package html
|
||
|
|
||
|
type ReadmeComponentContext struct {
|
||
|
Markdown string
|
||
|
}
|
||
|
|
||
|
templ readmeComponent(rcc ReadmeComponentContext) {
|
||
|
<div class="bg-base/50 px-5 rounded markdown">@templ.Raw(rcc.Markdown)</div>
|
||
|
}
|
||
|
|