Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created February 8, 2020 20:53
Show Gist options
  • Save DZuz14/7606d6ab1f0ead0ee707cc86631d0862 to your computer and use it in GitHub Desktop.
Save DZuz14/7606d6ab1f0ead0ee707cc86631d0862 to your computer and use it in GitHub Desktop.
Slider with React Hooks 3
import React from 'react'
import styled from '@emotion/styled'
const SliderContent = styled.div`
transform: translateX(-${props => props.translate}px);
transition: transform ease-out ${props => props.transition}s;
height: 100%;
width: ${props => props.width}px;
display: flex;
`
export default SliderContent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment