class Main extends Component { constructor() { super() this.state = { books: [] } } render() { <BooksList books={this.state.books} /> } }