AG-3316 agGridReact needs to be updated to use the updated react lifecycle hooks

This commit is contained in:
Sean Landsman
2019-09-25 12:22:09 +01:00
parent b9b2b03a6b
commit 0584234be7
5 changed files with 24 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
import React from "react";
import PriceRenderer from "./PriceRenderer";
import PriceEditor from "./PriceEditor";
import PriceFilter from "./PriceFilter";
export const initialState = {
rowData: [],
@@ -14,6 +15,7 @@ export const initialState = {
cellClass: 'align-right',
editable: true,
cellEditorFramework: PriceEditor,
filterFramework: PriceFilter,
cellRendererFramework: PriceRenderer
}
]