Last active
February 18, 2020 17:50
-
-
Save DZuz14/cfe5020ce38a1ade4402f81e1a30748b to your computer and use it in GitHub Desktop.
Slider with React Hooks 5
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
/** @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