Add deployment data
This commit is contained in:
49
src/App.jsx
Normal file
49
src/App.jsx
Normal file
@@ -0,0 +1,49 @@
|
||||
import { Component } from 'react'
|
||||
import './App.css';
|
||||
|
||||
import { CardList } from './components/card-list/card-list.component'
|
||||
import { SearchBox } from './components/search-box/search-box.component'
|
||||
|
||||
class App extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
monsters: [],
|
||||
searchField: ''
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
fetch('https://jsonplaceholder.typicode.com/users')
|
||||
.then(response => response.json()).then(
|
||||
users => this.setState({ monsters: users })
|
||||
)
|
||||
}
|
||||
|
||||
handleChange = e => {
|
||||
this.setState({ searchField: e.target.value })
|
||||
}
|
||||
|
||||
render() {
|
||||
const { monsters, searchField } = this.state;
|
||||
const filteredMonsters = monsters.filter(monster =>
|
||||
monster.name.toLowerCase().includes(searchField.toLowerCase())
|
||||
);
|
||||
|
||||
|
||||
return (
|
||||
<div className="App">
|
||||
<h1>Monster Rolodex</h1>
|
||||
<SearchBox
|
||||
placeholder='Search Monsters'
|
||||
handleChange={this.handleChange}
|
||||
/>
|
||||
<CardList monsters={filteredMonsters} />
|
||||
</div >
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user