SuggestionsOverlay.js
866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import React,{PropTypes,Children} from 'react';
import ReactDOM from 'react-dom';
import cx from 'classnames';
import s from './ChatTextarea.scss';
class SuggestionsOverlay extends React.Component {
constructor(props) {
super(props);
}
static propTypes = {
children:PropTypes.oneOfType([
PropTypes.element,
PropTypes.arrayOf(PropTypes.element)
])
}
static defaultProps={
}
renderSuggestions(){
return React.Children.map(this.props.children,(context)=>{
console.log(context);
return null;
})
}
render(){
return(
<div className={cx()}>
<ul>
{this.renderSuggestions()}
</ul>
</div>
)
}
}
export default SuggestionsOverlay;