fix(ui): change tab names

fix(api): change api url
This commit is contained in:
shafin-r
2026-01-17 18:37:37 +06:00
parent 16dffe6ffd
commit 61061001f9
13 changed files with 501 additions and 50 deletions

23
src/types/sheet.ts Normal file
View File

@ -0,0 +1,23 @@
interface CreatedBy {
id: string;
name: string;
email: string;
}
export interface PracticeSheet {
title: string;
difficulty: string;
time_limit: number;
description: string;
is_locked: boolean;
id: string;
created_by_id: string;
created_at: string;
updated_at: string;
questions_count: number;
topics: string[];
created_by: CreatedBy;
modules: string[];
user_status: string;
modules_count: number;
}

11
src/types/testdate.ts Normal file
View File

@ -0,0 +1,11 @@
import type { ReactNode } from "react";
export interface TestDate {
action: ReactNode;
test_date: string;
registration_deadline: string;
late_registration_deadline: string;
location: string;
is_digital: boolean;
id: string;
}