Created
January 29, 2017 04:30
-
-
Save DZuz14/bd7b2b1dfe32a65d060b17ff2cc48c8b to your computer and use it in GitHub Desktop.
Start of the higher order component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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