Skip to content

Instantly share code, notes, and snippets.

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(

O Grove 2019 Playlist

Parte 1

  • 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

Xuntanza Zara IT W'20

Playlist (50)

Step 1 (15)

  • Gimme gimme - INNA
  • Un momento - INNA
  • God is a dancer - Tiësto
  • Won't go quietly - Example
  • Turn me on - Riton
  • Superstylin' - Groove Armada
  • Crazy - Felon

Xuntanza Zara IT W'20

Playlist

  • (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
import React, { useState, useEffect } from 'react';
import { buildStyles } from '../../plugins/utils';
const styles = buildStyles({
container: [
'relative',
'ml-8'
],
button: [
'relative',
import React from 'react';
import { buildStyles } from '../../plugins/utils';
const styles = buildStyles({
container: [
'px-4',
'py-5',
'border-t',
'border-gray-800',
'sm:hidden'
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);
import React, { Suspense } from 'react';
import PropTypes from 'prop-types';
import { useResponsive } from './responsive-provider';
const SuspenseFallback = () => (null);
function ResponsiveComponent({
xs,
sm,
lg,
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')}
import React, {
useContext,
useEffect,
useRef,
useState,
lazy
} from 'react';
import PropTypes from 'prop-types';
const BREAKPOINTS = [