<a href="/" onClick={this.showAllBook.bind(this)}>All Book</a>showAllBook(event) {
event.preventDefault();
const name = "One";
this.props.showAllBooks();showAllBooks() {
const { allBooks } = this.state;
this.setState({filteredBooks: allBooks});
}