Skip to content

Instantly share code, notes, and snippets.

View joshferrell's full-sized avatar

Joshua Ferrell joshferrell

View GitHub Profile
@joshferrell
joshferrell / react-player-controls.d.ts
Created February 1, 2019 20:13
React Player Controls Typing
declare module "react-player-controls" {
import * as React from 'react';
interface ButtonProps {
onClick: () => void;
isEnabled?: boolean;
className?: string | null;
style?: React.CSSProperties;
children?: JSX.Element | JSX.Element[];
@joshferrell
joshferrell / index.js
Created April 13, 2017 02:49
requirebin sketch
// Welcome! require() some modules from npm (like you were using browserify)
// and then hit Run Code to run your code on the right side.
// Modules get downloaded from browserify-cdn and bundled in your browser.
var test = require('reactstrap');
console.log(test);