import React, { useState } from 'react'; import { FiExternalLink } from 'react-icons/fi'; import shared from '../styles/Shared.module.scss'; import styles from '../styles/Program.module.scss'; import { CSSTransition } from 'react-transition-group'; import { BiChevronDown, BiChevronLeft } from 'react-icons/bi'; import Performer from '../types/Performer'; import Image from 'next/image'; import Link from 'next/link'; interface DayToggles { wed: boolean; thu: boolean; fri: boolean; sat: boolean; } const firstPerformers: Performer[] = []; const secondPerformers: Performer[] = []; const Program = () => { const [firstPerformers] = useState([ { id: "ayras", name: "Äyräs", paragraphs: [] }, { id: "hanna_storm", name: "Hanna Storm", paragraphs: [] }, { id: "juha_rautio", name: "Juha Rautio", paragraphs: [] }, { id: "katariina_vuorinen", name: "Katariina Vuorinen & Ilkka Turta", paragraphs: [] }]); const [secondPerformers] = useState([ { id: "juha_kulmala", name: "Juha Kulmala + Positroninen runo-orkesteri", paragraphs: [] }, { id: "terhi_forssen", name: "Terhi Forssén", paragraphs: [] }, { id: "katariina_vuorinen", name: "Katariina Vuorinen & Björn", paragraphs: [] }]); return (

Ohjelma

{/* Vaihela */}
pe 7.6. 18 - 21

Vaihela

{firstPerformers.map((p) => ( {p.name} {p.name} ))}


Ohjelma täydentyy...
{/* Laituri */}
pe 14.6. 18 - 21

Laituri

{secondPerformers.map((p) => ( {p.name} {p.name} ))}


Ohjelma täydentyy...
Aiempien vuosien esiintyjiä
); }; export default Program;