Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created January 29, 2017 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DZuz14/bd7b2b1dfe32a65d060b17ff2cc48c8b to your computer and use it in GitHub Desktop.
Save DZuz14/bd7b2b1dfe32a65d060b17ff2cc48c8b to your computer and use it in GitHub Desktop.
Start of the higher order component
import React, { Component } from 'react';
export default class Slider extends Component {
constructor(props) {
super(props);
this.state = {}
}
render() {
return (
<div className="slider">
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment