AnimationSlider ============ This component creates slideable content controlled by an animate prop to direct the contents to slide left or right ## How to use: ```jsx import AnimationSlider from 'components/animation-slider'; class MySlider extends Component { constructor() { super(); this.state = { pages: [ 44, 55, 66, 77, 88 ], page: 0, animate: null, }; this.forward = this.forward.bind( this ); this.back = this.forward.back( this ); } forward() { this.setState( state => ( { page: state.page + 1, animate: 'left', } ) ); } back() { this.setState( state => ( { page: state.page - 1, animate: 'right', } ) ); } render() { const { page, pages, animate } = this.state; return (