Completely updated React, fixed #11, (hopefully)

This commit is contained in:
2018-03-04 19:11:49 -05:00
parent 6e0afd6e2a
commit 34e5f5139a
13674 changed files with 333464 additions and 473223 deletions

View File

@@ -40,11 +40,11 @@ React Grid uses the latest web platform standards. Thus, it cannot support older
The Grid renders nothing by default. The root Grid component's nested plugin components implement its functionality, and it is necessary to specify at least one plugin that visualizes the grid data.
Use the TableView plugin to display the data as a simple table:
Use the Table plugin to display the data as a simple table:
```js
```jsx
import {
Grid, TableView, TableHeaderRow
Grid, Table, TableHeaderRow
} from '@devexpress/dx-react-grid-bootstrap3'/* or '@devexpress/dx-react-grid-material-ui' */;
const App = () => (
@@ -58,7 +58,7 @@ const App = () => (
{ name: 'product', title: 'Product' },
{ name: 'owner', title: 'Owner' },
]}>
<TableView />
<Table />
<TableHeaderRow />
</Grid>
);
@@ -68,8 +68,8 @@ const App = () => (
Follow the links below to try out the React Grid:
- [WebpackBin for Bootstrap3](https://www.webpackbin.com/bins/-KoCcFwPPtps5fEN0PkI)
- [WebpackBin for Material UI](https://www.webpackbin.com/bins/-KoCeS-_jZrZuTecv-wd)
- [CodeSandbox for Bootstrap3](https://codesandbox.io/s/7o46mkowx)
- [CodeSandbox for Material UI](https://codesandbox.io/s/13qvz1qqzl)
## Documentation