Skip to content

Commit b390aeb

Browse files
committed
1011820: Addressed Review comments.
1 parent aced44d commit b390aeb

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

Document-Processing-toc.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5257,7 +5257,6 @@
52575257
<ul>
52585258
<li><a href="/document-processing/excel/spreadsheet/react/overview">Overview</a></li>
52595259
<li><a href="/document-processing/excel/spreadsheet/react/getting-started">Getting Started</a></li>
5260-
<li><a href="/document-processing/excel/spreadsheet/react/nextjs-getting-started">Getting Started with NextJS</a></li>
52615260
<li><a href="/document-processing/excel/spreadsheet/react/data-binding">Data Binding</a></li>
52625261
<li>Environment Integrations
52635262
<ul>

Document-Processing/Excel/Spreadsheet/React/Environment-Integrations/create-react-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ For more details on built-in themes and usage, refer to the [Themes topic](https
8484

8585
## Adding Spreadsheet component
8686

87-
Now, you can import the spreadsheet component into your `src/App.js` file.
87+
Now, you can import the spreadsheet component into your `src/App.jsx` file.
8888

8989
{% tabs %}
9090
{% highlight js tabtitle="app.jsx" %}

Document-Processing/Excel/Spreadsheet/React/Environment-Integrations/remix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ This configuration ensures Syncfusion modules are properly compiled for SSR comp
106106

107107
## Adding Spreadsheet component
108108

109-
Add the React Spreadsheet component in `~/app/routes/_index.ts` file using the following code:
109+
Add the React Spreadsheet component in `~/app/routes/_index.tsx` file using the following code:
110110

111111
```js
112112
import type { Route } from "./+types/home";

Document-Processing/Excel/Spreadsheet/React/Environment-Integrations/sharepoint.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ platform: document-processing
77
documentation: ug
88
---
99

10-
# Getting Started with React Spreadsheet in the SharePoint Framework
10+
# Getting Started with React Spreadsheet in the SharePoint Framework (SPFx)
1111

1212
This article provides a step-by-step guide for setting up a SharePoint project and integrating the Syncfusion® React components.
1313

14-
`SharePoint` Framework is a development model and framework provided by Microsoft for building custom solutions and extensions for SharePoint and Microsoft Teams. It is a modern, client-side framework that allows developers to create web parts, extensions, and customizations that can be deployed and used within SharePoint sites and Teams applications.
14+
`SharePoint` Framework (SPFx) is a development model and framework provided by Microsoft for building custom solutions and extensions for SharePoint and Microsoft Teams. It is a modern, client-side framework that allows developers to create web parts, extensions, and customizations that can be deployed and used within SharePoint sites and Teams applications.
1515

1616
## Prerequisites
1717

@@ -20,7 +20,7 @@ This article provides a step-by-step guide for setting up a SharePoint project a
2020

2121
## Set up the SharePoint project
2222

23-
Create a new project using the following command:
23+
Create a new SPFx project using the following command:
2424

2525
**Step 1:** To initiate the creation of a new SharePoint project, use the following command:
2626

@@ -58,7 +58,7 @@ npm install @syncfusion/ej2-react-spreadsheet --save
5858
## Adding CSS reference
5959
Themes for Syncfusion React Spreadsheet can be applied using CSS files from npm packages, CDN, CRG, or [Theme Studio](https://ej2.syncfusion.com/react/documentation/appearance/theme-studio). Refer to the [themes documentation](https://ej2.syncfusion.com/react/documentation/appearance/theme) for more detail.
6060
61-
This example demonstrates importing the `Tailwind 3` theme CSS within the `App.ts` file located at `~/src/webparts/app/components/App.ts`:
61+
This example demonstrates importing the `Tailwind 3` theme CSS within the `App.tsx` file located at `~/src/webparts/app/components/App.tsx`:
6262
6363
```ts
6464
require('@syncfusion/ej2-base/styles/tailwind3.css');
@@ -75,7 +75,7 @@ require('@syncfusion/ej2-react-spreadsheet/styles/tailwind3.css');
7575
7676
## Add Spreadsheet Component
7777
78-
Add the below code in the `App.ts` file inside the ~/src/webparts/app/components folder to render the spreadsheet.
78+
Add the below code in the `App.tsx` file inside the ~/src/webparts/app/components folder to render the spreadsheet.
7979
8080
```ts
8181
import * as React from 'react';

0 commit comments

Comments
 (0)