added functionalitie to impressions

This commit is contained in:
2025-09-22 11:57:52 -06:00
parent e9998cac5c
commit 79e9844303
13 changed files with 240 additions and 52 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import { useEffect, useState } from "react";
import "./AlertBox.css";
interface AlertBoxProps {
message: string;
message: string | null;
type: "error" | "success";
duration?: number;
}