- Added Custom Exams tab showing all exams from Generation page - Displays title, module badges, duration, and status - Added Create Exam button - Kept Exam Sessions tab for institutional sessions - Search filters across exams Made-with: Cursor
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import { Measurable } from '@radix-ui/rect';
|
|
|
|
/**
|
|
* Use this custom hook to get access to an element's rect (getBoundingClientRect)
|
|
* and observe it along time.
|
|
*/
|
|
declare function useRect(measurable: Measurable | null): DOMRect | undefined;
|
|
|
|
export { useRect };
|