Created
August 4, 2020 10:45
-
-
Save DZuz14/922dd5d7be5b4fb42b3c650abb8f390a to your computer and use it in GitHub Desktop.
React Spotify P1 Content
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 Content = ({ children }) => ( | |
<div | |
className="Content" | |
css={css` | |
width: calc(100% - 200px); | |
padding: 20px; | |
background: #121212; | |
`} | |
> | |
{children} | |
</div> | |
) | |
export default Content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment