Open granicz opened 7 months ago
I have a template with a ws-replace="MainContainer node, that I use as follows:
ws-replace="MainContainer
type IndexTemplate = Template<"wwwroot/index.html", ClientLoad.FromDocument> let foo () = IndexTemplate() // ... .MainContainer(...) .Bind()
What I find is that the content I add to MainContainer gets prepended to the <body> node, instead of replacing the marker node.
MainContainer
<body>
I have a template with a
ws-replace="MainContainer
node, that I use as follows:What I find is that the content I add to
MainContainer
gets prepended to the<body>
node, instead of replacing the marker node.