

import type { TIssue } from "@buzzwaretech/types";

export type TDateAlertProps = {
  date: string;
  workItem: TIssue;
  projectId: string;
};
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export function DateAlert(props: TDateAlertProps) {
  return <></>;
}
