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'; interface DayToggles { wed: boolean; thu: boolean; fri: boolean; sat: boolean; } const Program = () => { const [dayToggles, setDayToggles] = useState({ wed: false, thu: false, fri: false, sat: false, }); const toggleDayDesc = (day: keyof DayToggles) => { let updated = { ...dayToggles }; updated[day] = !updated[day]; setDayToggles(updated); }; return (

Ohjelma

{/* Torstai */}

20.7. Laituri to

Café Laituri, Voiponlahdentie 37, Palva

17:00 - 19:00

{/* Perjantai */}

21.7. Vaihela pe

Saaristohotelli Vaihela, Velkuanmaantie 168, Velkuanmaa

18:00 - 21:00

{/* Lauantai */}

22.7. Sinervo la

Sinervon talo, Sauniementie 5, Teersalo

14:00 - 20:00

); }; export default Program;