Skip to content

Instantly share code, notes, and snippets.

View ycliuhw's full-sized avatar
🏠
Working from home

Kelvin ycliuhw

🏠
Working from home
  • Sydney
View GitHub Profile
@parties
parties / responsive-fitted-table.jsx
Last active March 13, 2020 20:02
Responsive Wrapper for Facebook's Fixed Data Table
var React = require('react');
var {Table} = require('fixed-data-table');
var _ = require('lodash');
var FittedTable = React.createClass({
getInitialState() {
return {
tableWidth : 400,
tableHeight : 400
};