На чём основаны ваши подозрения? - ну там, ошибки в консоли, поведение приложения отличается от ожидаемого, etc.
class InputResult extends React.Component {
constructor(props) {
super(props);
this.state = {
error: null,
isLoaded: false,
items: []
};
}
state = {
searchValue: ''
}
onSearchChange = (event, searchValue) => {
this.setState({ searchValue })
}
onSearchClick = () => {
const { searchValue } = this.state;
fetch("http://localhost:8080/api/users/?name="+searchValue)
.then(res => res.json())
.then(
(result) => {
this.setState({
isLoaded: true,
items: result.items
}
);
},
(error) => {
this.setState({
isLoaded: true,
error
});
}
)
.catch(error => console.log('parsing failed', error));
}
render() {
const { items } = this.state;
console.log('',items);
return ()