onContentChange = ({ target: { value } }: { target: { value: string } }) => {
    const weddingProfile = Object.assign({}, this.state.weddingProfile, { giftListContent: value });
    this.setState({ weddingProfile });
  };