PnP React Controls
Patterns and Practices (PnP) provides a list of reusable React controls to developers for building solutions such as webparts and extensions using SharePoint Framework.
Refer to this link to get the list of React controls for SPFx.
You will see how to use PnP Web Part Title control in SPFx webpart.
PnP Web Part Title Control
This control renders a web part title that is changeable when the page is in edit mode. See that all links also can be added as shown below. Refer to this link for more details.
In this article, you will see how to perform the following tasks,
- Prerequisites
- Create SPFx solution
- Implement Web Part Title Control solution
- Deploy the solution
- Test the webpart
Prerequisites
Create SPFx solution
Open Node.js command prompt.
Create a new folder.
>md spfx-pnpreact-webparttitle
Navigate to the folder.
> cd spfx-pnpreact-webparttitle
Execute the following command to create SPFx webpart.
>yo @microsoft/sharepoint
Enter all the required details to create a new solution as shown below.
Yeoman generator will perform scaffolding process and once it is completed, lock down the version of project dependencies by executing the following command.
>npm shrinkwrap
Execute the following command to open the solution in the code editor.
>code .
Implement Web Part Title Control solution
Execute the following command to install the PnP React Controls NPM package.
>npm install @pnp/spfx-controls-react --save
Open “src\webparts\pnPWebPartTitle\components\IPnPWebPartTitleProps.ts” file and update the code as shown below.
- import { DisplayMode } from '@microsoft/sp-core-library';
- export interface IPnPWebPartTitleProps {
- description: string;
- title: string;
- displayMode: DisplayMode;
- updateProperty: (value: string) => void;
- }
Open webpart file “src\webparts\pnPWebPartTitle\PnPWebPartTitleWebPart.ts” and update the following.
- Update the webpart props interface
- Update the render method
Update the webpart props interface:
- export interface IPnPWebPartTitleWebPartProps {
- description: string;
- title: string;
- displayMode: DisplayMode;
- updateProperty: (value: string) => void;
- }
Update the webpart props interface,
- public render(): void {
- const element: React.ReactElement<IPnPWebPartTitleProps> = React.createElement(
- PnPWebPartTitle,
- {
- description: this.properties.description,
- title: this.properties.title,
- displayMode: this.displayMode,
- updateProperty: (value: string) => {
- this.properties.title = value;
- }
- }
- );
- ReactDom.render(element, this.domElement);
- }
Open the component file “src\webparts\pnPWebPartTitle\components\PnPWebPartTitle.tsx” and import the control.
- import { WebPartTitle } from "@pnp/spfx-controls-react/lib/WebPartTitle";
- import { Link } from 'office-ui-fabric-react';
Update the render method as shown below.

Join the conversation! Your thoughts help the community grow.