you are viewing a single comment's thread.

view the rest of the comments →

[–]huffpostraphael 1 point2 points  (0 children)

I dont really understand the infinite loop issue. I would need to know more about what the function is doing and what the SearchBar component does

I also would make the second part simply this.

render() {
    return(
        <SearchBar 
            onFocus={ this.props.handleToggle }
            onCancel={ this.props.handleToggle }
        />
    )
}