import * as React from "react"; import { WeekRow } from "./week_row"; import { Week } from "./interfaces"; import { pushWeek, popWeek } from "./actions"; import { t } from "i18next"; interface WeekGridProps { weeks: Week[]; dispatch: Function; }; export function WeekGrid({weeks, dispatch}: WeekGridProps) { return