constructor()

in src/app/personal-time-tracking-widget.js [27:38]


  constructor(props) {
    super(props);
    const {dashboardApi} = props;

    this.state = {
      isLoading: true,
      isLoadingMore: false,
      isConfiguring: false
    };

    dashboardApi.setTitle(i18n('Personal Time Tracking'));
  }