Things, i keep getting wrong. Part 1/n
Remember "render-return"
Inside your elements the render()
method returns html
render() {
return html`
<h1>Some html</h1>
`
}
for some reason i keep forgetting the return. it might be because styles don't return they are a static!
static styles = css`
h1 { font-weight: 400; }
`
Top comments (0)