Added level to table

This commit is contained in:
Joao Ramos
2024-01-09 18:47:32 +00:00
parent f8bf58e57c
commit 4e378f0c71
3 changed files with 67 additions and 17 deletions

View File

@@ -8,4 +8,14 @@ export interface ModuleScore {
png?: string,
evaluation?: string,
suggestions?: string,
}
export interface StudentData {
id: string;
name: string;
email: string;
gender: string;
date: string;
result: string;
level?: string;
}