import React from "react"; import "./index.scss"; import Class, { Group } from "../Class"; interface RightBarProps { onClassHover: (group_id: String, class_id: String) => void; onClassClick: (group_id: String, class_id: String) => void; lectures: Array; } interface RightBarState {} export default class RightBar extends React.Component< RightBarProps, RightBarState > { render() { return (
Hubert WrzesiƄski

Semestr zimowy 2020/2021
{this.props.lectures.map((classgroup, index) => ( ))}
); } }