import React from "react"; import styles from "./task-list-table.module.css"; import { Task } from "../../types/public-types"; export const TaskListTableDefault: React.FC<{ rowHeight: number; rowWidth: string; fontFamily: string; fontSize: string; locale: string; tasks: Task[]; }> = ({ rowHeight, rowWidth, tasks, fontFamily, fontSize, locale }) => { const dateTimeOptions = { weekday: "short", year: "numeric", month: "long", day: "numeric", }; return (