Last active
December 25, 2017 21:08
-
-
Save denisraslov/e0d133d34371bc25bbacb991ea775d04 to your computer and use it in GitHub Desktop.
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 { 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