turkmen-tv-front/typings/quizId.type.ts

7 lines
145 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import { Dispatch, SetStateAction } from 'react';
export interface IQuizId {
quizId: number;
setQuizId: Dispatch<SetStateAction<number>>;
}