Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created August 4, 2020 10:45
Show Gist options
  • Save DZuz14/922dd5d7be5b4fb42b3c650abb8f390a to your computer and use it in GitHub Desktop.
Save DZuz14/922dd5d7be5b4fb42b3c650abb8f390a to your computer and use it in GitHub Desktop.
React Spotify P1 Content
/** @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