Fix the ListDivider to be a list item.

master
Tom Hacohen 2017-12-16 12:51:47 +00:00
parent 87e670ac97
commit b76ac00d78
1 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,9 @@ export const ListSubheader = pure((props: any) => (
));
export const ListDivider = pure((props: any) => (
<hr className={'ListDivider ' + (props.inset ? 'ListDivider-inset' : '')} {...props} />
<li>
<hr className={'ListDivider ' + (props.inset ? 'ListDivider-inset' : '')} {...props} />
</li>
));
export const ListItem = pure((_props: any) => {