blazor-403121-components-rich-edit-get-started-with-rich-text-editor.md
This topic describes how to create a new project or configure an existing project to use a DevExpress Rich Text Editor component.
Follow this tutorial to create a Blazor application using the DevExpress Template Kit. To add the Rich Text Editor to the application, choose the correponding option in the Kit.
Follow the steps below to incorporate the Rich Text Editor into a Blazor app created with a Microsoft template.
Create an application as described in the following topic: Get Started With DevExpress Components for Blazor.
Install the DevExpress.Blazor.RichEdit NuGet package.
Register the Rich Text Editor’s CSS file in the <head> section of the Components/App.razor file for Blazor Web applications.
Register the DevExpress.Blazor.Office and DevExpress.Blazor.RichEdit namespaces in the Components/Imports.razor file:
Optional. Set up the Rich Text Editor’s culture. See the following topic for details: Localization.
Add the <DxRichEdit /> tag to the Pages/Index.razor page. Blazor Rich Text Editor does not support static render mode. You need to enable interactivity on a Razor page to allow Blazor Rich Text Editor to execute scripts and display data.
@rendermode InteractiveServer
<DxRichEdit />
Run the application to see the result: