Skip to content

Instantly share code, notes, and snippets.

@denisraslov
Last active December 25, 2017 21:08
Show Gist options
  • Save denisraslov/e0d133d34371bc25bbacb991ea775d04 to your computer and use it in GitHub Desktop.
Save denisraslov/e0d133d34371bc25bbacb991ea775d04 to your computer and use it in GitHub Desktop.
import { Grid, Input, Select } from 'react-spreadsheet-grid';
class GridContainer extends React.PureComponent {
render() {
return (
<Grid
rows={this.state.rows}
columns={this.state.columns}
/>
);
}
}
export default GridContainer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment