AG-1329 Move ag-grid-react and ag-grid-vue to modules

This commit is contained in:
Sean Landsman
2019-10-23 20:25:40 +01:00
parent 36eb9c8a18
commit 61420e0d67
10 changed files with 12 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
import React, {Component} from "react";
import {connect} from "react-redux";
import {AgGridReact} from "ag-grid-react";
import {AgGridReact} from "@ag-community/grid-react";
class FxQuoteMatrix extends Component {
constructor(props) {
@@ -85,4 +85,4 @@ export default connect(
rowData: state ? state.fxData : null
}
}
)(FxQuoteMatrix);
)(FxQuoteMatrix);

View File

@@ -1,6 +1,6 @@
import React, {Component} from "react";
import {AgGridReact} from "ag-grid-react";
import {AgGridReact} from "@ag-community/grid-react";
import map from "lodash/map";
import difference from "lodash/difference";
@@ -170,4 +170,4 @@ export default class extends Component {
</div>
);
}
}
}

View File

@@ -1,7 +1,7 @@
import React, {Component} from "react";
import {connect} from "react-redux";
import {AgGridReact} from "ag-grid-react";
import {AgGridReact} from "@ag-community/grid-react";
class TopMoversGrid extends Component {
constructor(props) {