Skip to content

Instantly share code, notes, and snippets.

View hueyAtFetchly's full-sized avatar

Huey hueyAtFetchly

  • Denver, Colorado
View GitHub Profile
import React, {Component} from 'react'
export default class Swipeable extends Component {
constructor(props) {
super(props)
this.handleMouseMove = this.handleMouseMove.bind(this)
this.handleMouseDown = this.handleMouseDown.bind(this)
this.handleMouseUp = this.handleMouseUp.bind(this)