-
Sálvese quien pueda - Vetusta Morla
-
Copacabana - IZAL
-
La revolución sexual - La casa azul
-
Ave María - David Bisbal
-
Shape of you - Ed Sheeran (Pedro)
-
Just got paid - Sigala
-
Shut up and dance - Walk the moon
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
import React, { useState } from 'react'; | |
import useExternalData from '../hooks/use-external-data'; | |
import { getAllPodcasts } from '../api/podcaster'; | |
import PodcastSummary from './product-summary'; | |
function onFilterChangedFactory(originalPodcasts, updater) { | |
return (event) => { | |
const regExp = new RegExp(event.target.value, 'i'); | |
updater( |
- (109) Samsara - Tungevaag & Rabaan
- (110) Gimme gimme - INNA
- (120) Jaques - Jax Jones
- (123) Make me feel - Janelle Monae
- (125) Won't go quietly - Example
- (123) We are your frieds - Justice
- (126) Yeah Yeah (D Ramirez vocal radio edit) - Bodyrox
- (125) Gecko (Overdrive) - Olover Heldens
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
import React, { useState, useEffect } from 'react'; | |
import { buildStyles } from '../../plugins/utils'; | |
const styles = buildStyles({ | |
container: [ | |
'relative', | |
'ml-8' | |
], | |
button: [ | |
'relative', |
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
import React from 'react'; | |
import { buildStyles } from '../../plugins/utils'; | |
const styles = buildStyles({ | |
container: [ | |
'px-4', | |
'py-5', | |
'border-t', | |
'border-gray-800', | |
'sm:hidden' |
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
import React, { useState } from 'react'; | |
import { buildStyles } from '../../plugins/utils'; | |
import AccountDropdown from '../account-dropdown/account-dropdown'; | |
import rawStyles from './nav-bar.styles'; | |
import logoUrl from '../../images/logo.svg'; | |
const styles = buildStyles(rawStyles); |
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
import React, { Suspense } from 'react'; | |
import PropTypes from 'prop-types'; | |
import { useResponsive } from './responsive-provider'; | |
const SuspenseFallback = () => (null); | |
function ResponsiveComponent({ | |
xs, | |
sm, | |
lg, |
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
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import ResponsiveComponent from '../responsive-component/responsive-component'; | |
function AccountDropdown({ children, ...props }) { | |
return ( | |
<ResponsiveComponent | |
xs={() => import('./account-dropdown.xs')} | |
sm={() => import('./account-dropdown.sm')} |
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
import React, { | |
useContext, | |
useEffect, | |
useRef, | |
useState, | |
lazy | |
} from 'react'; | |
import PropTypes from 'prop-types'; | |
const BREAKPOINTS = [ |