0.3.6 • Published 8 years ago

react-gridview v0.3.6

Weekly downloads
38
License
MIT
Repository
github
Last release
8 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

8 years ago

0.3.5

8 years ago

0.3.4

8 years ago

0.3.3

8 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.11

8 years ago

0.1.10

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago