implemented debounce function successfuly

This commit is contained in:
andres alcocer
2020-07-10 18:26:07 -04:00
parent 4e6349f5f7
commit df9a71c1d4
4 changed files with 55 additions and 109 deletions

View File

@@ -1,11 +1,11 @@
import React, { Component } from 'react';
export default class Search extends Component {
state = {
movieList: []
}
render() {
return <div className="search-container">{this.state.movieList}</div>;
return (
<div className="search-container">
{this.props.history.location.movieRows}
</div>
);
}
}