Emojy reactions

This commit is contained in:
2025-03-25 19:12:47 +03:00
parent c02cf6dfc9
commit b2121cc133
12 changed files with 983 additions and 14 deletions

View File

@@ -49,10 +49,17 @@ export type BaseResponse<Data> = {
body: Data;
};
export interface Reaction {
_id: string;
sub: string;
reaction: string;
}
export interface Lesson {
id: string;
_id: string;
name: string;
reactions: Reaction[];
students: User[];
teachers: Teacher[];
date: string;