turkmentv_front/typings/quizId.type.ts

7 lines
145 B
TypeScript

import { Dispatch, SetStateAction } from 'react';
export interface IQuizId {
quizId: number;
setQuizId: Dispatch<SetStateAction<number>>;
}