Skip to content

Commit 955d374

Browse files
author
Alexander Fedyashov
committed
wip
1 parent 17a0742 commit 955d374

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/views/Item/ItemDescription.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React, { PropTypes } from 'react'
33

44
import {
55
customPropTypes,
6-
getElementType,
6+
getElementType,
77
getUnhandledProps,
88
META,
99
} from '../../lib'

src/views/Item/ItemGroup.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@ function ItemGroup(props) {
1313
const rest = getUnhandledProps(ItemGroup, props)
1414
const ElementType = getElementType(ItemGroup, props)
1515

16-
return (
17-
<ElementType {...rest} className={classes}>
18-
{children}
19-
</ElementType>
20-
)
16+
return <ElementType {...rest} className={classes}>{children}</ElementType>
2117
}
2218

2319
ItemGroup._meta = {

0 commit comments

Comments
 (0)