Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Last active August 4, 2020 10:50
Show Gist options
  • Save DZuz14/b8fd381de669637e1ca0a299bb3d0079 to your computer and use it in GitHub Desktop.
Save DZuz14/b8fd381de669637e1ca0a299bb3d0079 to your computer and use it in GitHub Desktop.
React Spotify P1
/** @jsx jsx */
import React from 'react'
import { css, jsx } from '@emotion/core'
import Topbar from './Topbar'
import Sidebar from './Sidebar'
import Content from './Content'
import Playbar from './Playbar'
const MusicPlayer = () => (
<div css={CSS}>
<Topbar />
<Sidebar />
<Content />
<Playbar />
</div>
)
const CSS = css`
height: 100%;
width: 100%;
display: flex;
position: relative;
color: white;
`
export default MusicPlayer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment