Skip to content

Instantly share code, notes, and snippets.

View jvanderen1's full-sized avatar
๐Ÿ‹๏ธโ€โ™‚๏ธ

Joshua Van Deren jvanderen1

๐Ÿ‹๏ธโ€โ™‚๏ธ
  • Google, Inc.
  • Boulder, CO
View GitHub Profile
TestPage.propTypes = {
numCols: PropTypes.number, // from withDatastore
numRows: PropTypes.number, // from withDatastore
setNumCols: PropTypes.func, // from withDatastore
setNumRows: PropTypes.func, // from withDatastore
};
TestPage.defaultProps = {
numCols: 0,
numRows: 0,
// Imports
// -------
// Libraries
import React from 'react';
import PropTypes from 'prop-types';
// Components
import ...
// Context
import ...