handleKeydown = e => {
    if (e.keyCode === 8 && e.target.value.length === 1) {
      this.setState({ showPlaceholder: true });
    }
  };