import React, { useState, useContext } from 'react'; import { CourseCard } from './CourseCard'; import { coursesContext } from '../contexts/CoursesProvider'; import styled from 'styled-components'; const RightbarStyled = styled.div` padding-top: 10px; padding-left: 15px; padding-right: 15px; text-align: center; font-family: Lato; width: 300px; height: 85vh; overflow-y: scroll; ::-webkit-scrollbar-track { border-radius: 10px; background-color: #f5f5f5; } ::-webkit-scrollbar { width: 12px; background-color: #f5f5f5; } ::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #d4b851; border: 1px solid; } `; const RightbarTextStyled = styled.div` border-bottom: 1px solid; `; export default function Rightbar() { const [selectedCardId, setSelectedCardId] = useState(null); const { courses } = useContext(coursesContext)!; const onCardClick = (e: React.MouseEvent) => { const target = e.currentTarget as HTMLElement; selectedCardId === target.id ? setSelectedCardId(null) : setSelectedCardId(target.id); }; return ( Hubert WrzesiƄski

Semestr zimowy 2020/2021
{courses.map((course, index) => ( ))}
); }