Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Last active February 8, 2020 23:56
Show Gist options
  • Save DZuz14/b479b1ec2f79981ace2acc368135578a to your computer and use it in GitHub Desktop.
Save DZuz14/b479b1ec2f79981ace2acc368135578a to your computer and use it in GitHub Desktop.
Slider With React Hooks (2)
/** @jsx jsx */
import React, { useState } from 'react'
import { css, jsx } from '@emotion/core'
/**
* @function Slider
*/
const Slider = () => {
return <div css={SliderCSS}>{/* */}</div>
}
const SliderCSS = css`
position: relative;
height: 100vh;
width: 100vw;
margin: 0 auto;
overflow: hidden;
`
export default Slider
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment