AG-2018 Rename ag-Grid to ag-Grid-Community

This commit is contained in:
Sean Landsman
2018-08-21 16:07:22 +01:00
parent f9b1f8527a
commit 168a127e51
11 changed files with 14 additions and 14 deletions

View File

@@ -4,8 +4,8 @@ import ReactDOM from 'react-dom';
import React from 'react';
import LargeGrid from './largeGrid.jsx';
import 'ag-grid/dist/styles/ag-grid.css';
import 'ag-grid/dist/styles/ag-theme-fresh.css';
import 'ag-grid-community/dist/styles/ag-grid.css';
import 'ag-grid-community/dist/styles/ag-theme-fresh.css';
// waiting for dom to load before booting react. we could alternatively
// put the index.js reference at the end fo the index.html, but i prefer this way.

View File

@@ -61,7 +61,7 @@ export default class MyApp extends Component {
render() {
return (
<div style={{height: '100%'}} className="ag-fresh">
<div style={{height: '100%'}} className="ag-theme-fresh">
<AgGridReact columnDefs={this.state.columnDefs} rowData={this.state.rowData}/>
</div>
);