as title, i want to get child element's tag name,
```
const { children, theme } = this.props;
const { open } = this.state;
let summary = null;
const otherChildren = [];
React.Children.map(children, (child, index) => {
if (child.type) {
console.log(`child type.name: ${child.type.name} `);
}
if (child.type && child.type.name === 'Summary') {
summary = cloneElement(child, {
children: child.props.children,
handleClick: this.handleClick,
handleKeyPress: this.handleKeyPress,
theme: child.props.theme
});
} else {
otherChildren.push(child);
}
});
**Success in Chrome browser**

**Failed in IE browser**

as title, i want to get child element's tag name,