turkmentv_front/typings/quizSearchActive.type.ts

7 lines
169 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import { Dispatch, SetStateAction } from 'react';
export interface IQuizSearchActive {
searchActive: boolean;
setSearchActive: Dispatch<SetStateAction<boolean>>;
}