Features | react-data-grid | react-table | material-table | hand-sontable | ag-gird | antd | Kendo | Syncfusion | datatables.net |
---|---|---|---|---|---|---|---|---|---|
Stars | 3.5k | 7k | 1k | 12k | 6k | ||||
Downloads | 280k | 1.1m | 90k | 190k | 400k | 33k | 5k | 550k | |
Bundle size | 40kB | 11kB | 85kB | 315kB | 250kB | 20kB | 425kB | 56kB | |
Docs traffic | 95k | 230k | 1.3m | ||||||
Row sorting | free | free | free | 💰 | free | free | 💰 | 💰 | free |
Filtering | free | free | free | 💰 | free | free | 💰 | 💰 | free |
Cell editing | free | free | free | 💰 | free | free | 💰 | 💰 | 💰 |
Column with groups | free | 💰 | free | free | 💰 | 💰 | free |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
search | count | |
---|---|---|
button | 3862 | |
icon | 3642 | |
grid | 3140 | |
icons | 2419 | |
text | 2303 | |
table | 2190 | |
form | 1816 | |
input | 1788 | |
card | 1788 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import styled, { ThemeProvider } from "styled-components"; | |
import { style, typography } from "@material-ui/system"; | |
const variant = style({ | |
prop: "variant", | |
cssProperty: false, | |
themeKey: "typography" | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { palette, spacing, typography } from '@material-ui/system'; | |
import styled from 'styled-components'; | |
const Box = styled.div`${palette}${spacing}${typography}`; | |
// or import { unstable_Box as Box } from '@material-ui/core/Box'; | |
<Box | |
color="primary.main" | |
bgcolor="background.paper" | |
fontFamily="h6.fontFamily" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import warning from 'warning' | |
const times = new Map() | |
const implementations = { | |
mark: { | |
start: name => { | |
times.set(name, performance.now()) | |
performance.mark(`metric_${name}_start`) | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import PropTypes from 'prop-types'; | |
class RootRef extends React.Component { | |
componentDidMount() { | |
this.props.rootRef(ReactDOM.findDOMNode(this)) | |
} | |
componentWillUnmount() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import classNames from 'classnames'; | |
import PropTypes from 'prop-types'; | |
function stylifier(higherOrderComponent) { | |
return Component => styles => { | |
function StyledComponent(props) { | |
const { classes, className, ...other } = props; | |
return <Component className={classNames(classes.root, className)} {...other} />; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow weak | |
function now() { | |
return +new Date(); // timestamp in ms | |
} | |
// Count the number of events sent over the last period of time. | |
const count = { | |
minute: { | |
slot: 0, |