🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

React-Gridview provides a spreadsheet interface to your web application.

React Table

Documentation

Build Status Coverage Status npm version

React-Gridview

React-Gridview provides a spreadsheet interface to your web application.

Demo
Examples (src)

Install

npm install --save-dev react-gridview 

Usage

・ES6

// .jsx import React from "react"; import {GridView} from "react-gridview";  const BasicExample = React.createClass({     render: function() {         return (             <GridView />         );     } }); 

・TypeScript

// tsconfig.json {     "compilerOptions": {         "moduleResolution": "node",         // --- ohter options     } } 
// .tsx  /// <reference path="../node_modules/immutable/dist/immutable.d.ts" /> import * as React from "react"; import {GridView} from "react-gridview";  export class BasicExample extends React.Component<{}, {}>{     render() {         return (             <GridView className="basic-example" />         );     } };  

License

MIT


You May Also Like