Fixing React Component Errors in SPFx Application Customizer: The Modern Way! š


If youāve ever worked on creating an Application Customizer with a React component in SharePoint Framework (SPFx), chances are youāve encountered an error like the one in the console below:
The Culprit Behind the Error šµļøāāļø
The error typically occurs when the React dependenciesānamely react and react-domāhavenāt been installed in your SPFx project. If youāre new to this, you might spend hours scratching your head wondering why the component isnāt loading as expected.
Hereās the thing: React isnāt included automatically in every SPFx project, especially when dealing with plain typescript scaffolds. Without these libraries, the browser simply doesnāt know how to render your React-based customizer, resulting in the dreaded console errors. š°
The Traditional Fix š§
The classic solution involves manually installing these dependencies. Youād run the following command:
npm install react@17.0.1 react-dom@17.0.1
Why 17.0.1?
This version is specifically compatible with SPFx versions 1.15.2 and above. Installing a different version of React could lead to compatibility issues, so always double-check your SPFx version(https://learn.microsoft.com/en-us/sharepoint/dev/spfx/compatibility#spfx-development-environment-compatibility) before proceeding.
While this method works perfectly fine, thereās now a better way to handle this dependency issue without manual intervention. š
The Modern Fix: SharePoint Framework Toolkit āļø
The latest pre-release version (4.3.3) of SharePoint Framework Toolkit introduces a modern approach that eliminates the hassle of manually managing dependencies for application customizer scaffolding. During the scaffolding process, the pre-release version provides an additional step to automatically install required React dependencies. š
Why Go Modern? š
Hereās why adopting the SPFx Toolkitās modern approach is a no-brainer:
Saves Time: Dependency management becomes an automatic process.
Prevents Errors: No more mismatched React versions or forgotten installations.
Boosts Productivity: Focus on writing code instead of troubleshooting dependency issues.
Bonus Tips š”
Always check the SPFx version before installing dependencies. The compatibility matrix is key to avoiding errors.
Consider upgrading to the latest SPFx version to leverage all modern tooling benefits.
Subscribe to my newsletter
Read articles from Sandeep P S directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
