Skip to content

Commit 9c4eebf

Browse files
authored
Add missing slash in closing header tag (#1541)
1 parent 455e567 commit 9c4eebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/components/slots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ BaseLayout({
292292
function BaseLayout(slots) {
293293
return (
294294
`<div class="container">
295-
<header>${slots.header}<header>
295+
<header>${slots.header}</header>
296296
<main>${slots.default}</main>
297297
<footer>${slots.footer}</footer>
298298
</div>`

0 commit comments

Comments
 (0)