0.3.6 • Published 9 years ago

react-gridview v0.3.6

Weekly downloads
38
License
MIT
Repository
github
Last release
9 years ago

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

0.3.6

9 years ago

0.3.5

9 years ago

0.3.4

9 years ago

0.3.3

9 years ago

0.3.2

9 years ago

0.3.1

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.11

10 years ago

0.1.10

10 years ago

0.1.9

10 years ago

0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago