From 37134d1eb9f92801226aa48c0192e0609984cd46 Mon Sep 17 00:00:00 2001 From: Serhii Pylypchuk Date: Mon, 26 Aug 2024 21:14:05 +0400 Subject: [PATCH] [fix] className to class (Angular guide) --- docs/angular_integration.md | 4 ++-- docs/react_integration.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/angular_integration.md b/docs/angular_integration.md index c082b96b..a1d78a9a 100644 --- a/docs/angular_integration.md +++ b/docs/angular_integration.md @@ -89,7 +89,7 @@ import { Component, ElementRef, OnInit, ViewChild, OnDestroy, ViewEncapsulation encapsulation: ViewEncapsulation.None, selector: 'spreadsheet', // a template name used in the "app.component.ts" file as styleUrls: ['./spreadsheet.component.css'], // include a css file - template: `
` + template: `
` }) export class SpreadsheetComponent implements OnInit, OnDestroy { @@ -190,7 +190,7 @@ import { Component, ElementRef, OnInit, ViewChild, OnDestroy, ViewEncapsulation encapsulation: ViewEncapsulation.None, selector: 'spreadsheet', styleUrls: ['./spreadsheet.component.css'], - template: `
` + template: `
` }) export class SpreadsheetComponent implements OnInit, OnDestroy { diff --git a/docs/react_integration.md b/docs/react_integration.md index b4400298..9846b036 100644 --- a/docs/react_integration.md +++ b/docs/react_integration.md @@ -60,7 +60,7 @@ Download the [**trial Spreadsheet package**](/how_to_start/#installing-spreadshe ### Step 2. Component creation -Now you need to create a React component, to add an Spreadsheet into the application. Create a new file in the ***src/*** directory and name it ***Spreadsheet.jsx***. +Now you need to create a React component, to add Spreadsheet into the application. Create a new file in the ***src/*** directory and name it ***Spreadsheet.jsx***. #### Import source files