How to use the @microsoft/sp-lodash-subset.extend function in @microsoft/sp-lodash-subset

To help you get started, we’ve selected a few @microsoft/sp-lodash-subset examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github SharePoint / sp-dev-fx-webparts / samples / react-todo / src / webparts / todo-step-3 / TodoWebPart.tsx View on Github external
private _renderTodoComponent(partialData?: ITodoComponentData): void {
    lodash.extend(this._todoComponentData, partialData);

    ReactDOM.render(
       as React.ReactElement,
      this.domElement
    );
  }
github SharePoint / sp-dev-fx-webparts / samples / react-todo / src / webparts / todo-step-2 / TodoWebPart.tsx View on Github external
private _renderTodoComponent(partialData?: ITodoComponentData): void {
    lodash.extend(this._todoComponentData, partialData);

    ReactDOM.render(
       as React.ReactElement,
      this.domElement
    );
  }
github SharePoint / sp-dev-fx-webparts / samples / react-todo / src / webparts / todo-step-4 / TodoWebPart.tsx View on Github external
private _renderTodoComponent(partialData?: ITodoComponentData): void {
    lodash.extend(this._todoComponentData, partialData);

    ReactDOM.render(
       as React.ReactElement,
      this.domElement
    );
  }