You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am writing a bun package in which I use typed-html. If I use the hyperscript tag _= as an html attribute I get the following error: : string; }' is not assignable to type 'HtmlBodyTag'.
Property '' does not exist on type 'HtmlBodyTag'.
return (
<body _={""}>
{children}
</body>
)
does not work but the following works:
return `
<body _={""}>
{children}
</body>
`
The text was updated successfully, but these errors were encountered:
I am writing a bun package in which I use typed-html. If I use the hyperscript tag _= as an html attribute I get the following error:
: string; }' is not assignable to type 'HtmlBodyTag'.
Property '' does not exist on type 'HtmlBodyTag'.
does not work but the following works:
The text was updated successfully, but these errors were encountered: