0.1.6 • Published 5 years ago

react-window-calendar v0.1.6

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

react-window-calendar

Currently under development. inspired by react-window

documentation (in progress)

import { WindowCalendar } from 'react-window-calendar';

const Cell = ({ rowIndex, columnIndex, className, style }) => (
  <div className={className} style={style}>
    {rowIndex} , {columnIndex}
  </div>
);

const Sample = () => (
  <WindowCalendar.Core
    height={300}
    rowCount={100}
    rowHeight={40}
    columnCount={100}
    columnWidth={100}
    fixedTopCount={1}
    fixedRightCount={1}
    fixedBottomCount={1}
    fixedLeftCount={1}
  >
    {Cell}
  </WindowCalendar.Core>
);
0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago