var App = /*#__PURE__*/ (function(_Component) {
  _inheritsLoose(App, _Component);
  function App(props) {
    var _this;
    _this = _Component.call(this, props) || this;
    _this.state = {
      books: [
        {
          name: "ades",
          year: 2011
        },
        {
          name: "lili",
          year: 2013
        }
      ],
      title: "Hello",
      show: false
    };
    return _this;
  }
  return App;
})(Component);