From 92c60a183e01f1f433b246ff6ad47183412c51ff Mon Sep 17 00:00:00 2001 From: Damyan Petev Date: Thu, 19 Mar 2026 11:29:36 +0200 Subject: [PATCH] fix(grid-lite): react installation step --- doc/en/components/grid-lite/overview.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/en/components/grid-lite/overview.md b/doc/en/components/grid-lite/overview.md index 716560af2..8001ff0e1 100644 --- a/doc/en/components/grid-lite/overview.md +++ b/doc/en/components/grid-lite/overview.md @@ -31,7 +31,7 @@ Our free, open-source {Platform} Grid Lite comes with the following column-based To install {GridLiteTitle}, go to the root folder of your project (where `package.json` is located) and run the following command using npm: ```cmd -npm install igniteui-grid-lite --save +npm install igniteui-grid-lite ``` Or using yarn: @@ -45,13 +45,15 @@ yarn add igniteui-grid-lite To install {GridLiteTitle}, go to the root folder of your project (where `package.json` is located) and run the following command using npm: ```cmd -npm install igniteui-react --save +npm install igniteui-react +npm install igniteui-grid-lite ``` Or using yarn: ```cmd yarn add igniteui-react +yarn add igniteui-grid-lite ```