Completely updated React, fixed #11, (hopefully)
This commit is contained in:
12
goTorrentWebUI/node_modules/@devexpress/dx-react-grid/README.md
generated
vendored
12
goTorrentWebUI/node_modules/@devexpress/dx-react-grid/README.md
generated
vendored
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user