Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Last active February 18, 2020 17:50
Show Gist options
  • Save DZuz14/cfe5020ce38a1ade4402f81e1a30748b to your computer and use it in GitHub Desktop.
Save DZuz14/cfe5020ce38a1ade4402f81e1a30748b to your computer and use it in GitHub Desktop.
Slider with React Hooks 5
/** @jsx jsx */
import React from 'react'
import { css, jsx } from '@emotion/core'
const Slide = ({ content }) => (
<div
css={css`
height: 100;
width: 100%;
background-image: url('${content}');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
`}
/>
)
export default Slide
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment