style(components): don't self close slot tags

This commit is contained in:
Brandy Carney
2018-07-11 11:48:41 -04:00
parent f6ab5b69ac
commit 02a0b6e5fe
4 changed files with 7 additions and 7 deletions

View File

@ -44,12 +44,12 @@ export class ItemDivider {
render() {
return [
<slot name="start" />,
<slot name="start"></slot>,
<div class="item-divider-inner">
<div class="item-divider-wrapper">
<slot></slot>
</div>
<slot name="end" />
<slot name="end"></slot>
</div>
];
}