Skip to content

Instantly share code, notes, and snippets.

@christiannwamba
Created May 30, 2018 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiannwamba/128d7455863f8b7d333c7a58b81ef7bf to your computer and use it in GitHub Desktop.
Save christiannwamba/128d7455863f8b7d333c7a58b81ef7bf to your computer and use it in GitHub Desktop.
// ImageBox component
import React from 'react';
import styled from 'styled-components';
import BlackBoxAnimated from './BlackBoxAnimated';
const ImageBox = styled.div`
width: 100vw;
height: 100vh;
background: url('http://4khdwallpapers.net/wp-content/uploads/2018/01/wonder-woman-hd-wallpaper.jpg');
background-size: cover;
background-position: center;
`;
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment