Beautiful and fast spreadsheet component for React

sheet-happens

Beautiful and fast spreadsheet component for React.

Sheet Happens is easy to implement and extend.

And it's super fast.

Install

npm install --save sheet-happens

Usage

import React, { Component } from 'react'

import Sheet from 'sheet-happens'
import 'sheet-happens/dist/index.css'

class Example extends Component {
  render() {
    return <Sheet />
  }
}