Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
gridjs-react
Advanced tools
React component for Grid.js
npm install --save gridjs-react
Also, make sure you have Grid.js installed already as it's a peer dependency of gridjs-react
:
npm install --save gridjs
Import the Grid component first:
import { Grid } from "gridjs-react";
<Grid
data={[
['John', 'john@example.com'],
['Mike', 'mike@gmail.com']
]}
columns={['Name', 'Email']}
search={true}
pagination={{
enabled: true,
limit: 1,
}}
/>
Then you can pass all Grid.js configs to the Grid
component. See Grid.js Config for more details.
You can bind your React components or elements in Table cells (both in header and body cells).
Simply import the _
function and use it in data
, columns
or formatter
function:
import { Grid, _ } from "gridjs-react";
<Grid
data={[
[
_(<b>John</b>),
'john@example.com',
],
[
_(<MyReactComponent>Mike</MyReactComponent>),
'mike@gmail.com',
]
]}
columns={[
'Name',
{
name: 'Email',
formatter: (cell) => _(<i>{cell}</i>)
}
]}
search={true}
pagination={{
enabled: true,
limit: 1,
}}
/>
See the React example on Grid.js website.
MIT
FAQs
React component for Grid.js
The npm package gridjs-react receives a total of 3,007 weekly downloads. As such, gridjs-react popularity was classified as popular.
We found that gridjs-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.