Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created August 4, 2020 10:46
Show Gist options
  • Save DZuz14/aeaa99337476b75b3172edd4fcc7fbd1 to your computer and use it in GitHub Desktop.
Save DZuz14/aeaa99337476b75b3172edd4fcc7fbd1 to your computer and use it in GitHub Desktop.
React Spotify P1 Sidebar
/** @jsx jsx */
import React from 'react'
import { css, jsx } from '@emotion/core'
import logo from '../../img/spotify-white.png'
const Sidebar = ({ children }) => (
<div
className="Sidebar"
css={css`
width: 200px;
height: 100%;
background: #000000;
padding: 20px;
`}
>
<img src={logo} height={50} />
{children}
</div>
)
export default Sidebar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment