I wanted to add data grid in my existing project. where all the dependencies are installed with yarn
so I installed the kendo-react-grid dependency with yarn and i am getting the error.
here is the code.
this is the error
so I installed the kendo-react-grid dependency with yarn and i am getting the error.
here is the code.
import * as React from "react"; import * as ReactDOM from "react-dom"; import { Grid, GridColumn } from "@progress/kendo-react-grid"; import products from "./products.json";
export const KindoRactApp = () => {return (<Grid style={{ height: "400px" }} data={products}><GridColumn field="ProductID" title="ID" width="40px" /><GridColumn field="ProductName" title="Name" width="250px" /><GridColumn field="Category.CategoryName" title="CategoryName" /><GridColumn field="UnitPrice" title="Price" /><GridColumn field="UnitsInStock" title="In stock" /></Grid>);};
this is the error
Hi, Prafulla,
I could see that my colleague Vessy is already handling the same question on a duplicate forum question. Therefore, I would suggest continuing the discussion there in order to keep the information consistent, and we will be glad to assist you further:
- https://www.telerik.com/forums/is-kendo-react-support-dependencies-installed-with-yarn-or-we-need-to-install-all-the-dependencies-with-npm-only
Regards,Wissam
Progress Telerik