
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
dx-react-grid-grommet
Advanced tools
Visit the Developer Express website for more information and examples.
To install:
$ npm install dx-react-grid-grommet
Live editable examples with grommet
import React from 'react';
import { Grommet, Box } from 'grommet';
import {
Grid,
Table,
TableHeaderRow,
} from 'dx-react-grid-grommet';
export default class Demo extends React.PureComponent {
constructor(props) {
super(props);
this.state = {
columns: [
{ name: 'region', title: 'Region' },
{ name: 'sector', title: 'Sector' },
{ name: 'customer', title: 'Customer' },
{ name: 'product', title: 'Product' },
{ name: 'amount', title: 'Sale Amount' },
],
rows: [
{region: "South America", sector: "Banking", customer: "Beacon Systems", product: "EnviroCare Max", amount: 10294},
{region: "North America", sector: "Health", customer: "Global Services", product: "EnviroCare", amount: 2895},
{region: "North America", sector: "Health", customer: "Supply Warehouse", product: "EnviroCare Max", amount: 3503},
{region: "Australia", sector: "Banking", customer: "Apollo Inc", product: "SolarOne", amount: 1379},
{region: "Europe", sector: "Health", customer: "Beacon Systems", product: "SolarOne", amount: 2867},
{region: "South America", sector: "Banking", customer: "Discovery Systems", product: "EnviroCare", amount: 3365},
{region: "North America", sector: "Health", customer: "Renewable Supplies", product: "EnviroCare", amount: 6932},
{region: "Europe", sector: "Telecom", customer: "Building M Inc", product: "EnviroCare", amount: 1135 },
],
};
}
render() {
const { rows, columns } = this.state;
return (
<Grommet>
<Box>
<Grid
rows={rows}
columns={columns}
>
<Table />
<TableHeaderRow />
</Grid>
</Box>
</Grommet>
);
}
}
FAQs
react grommet v2 theme for developer express dx-grid react
The npm package dx-react-grid-grommet receives a total of 7 weekly downloads. As such, dx-react-grid-grommet popularity was classified as not popular.
We found that dx-react-grid-grommet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.