turkmentv_front/typings/burger.type.ts

7 lines
155 B
TypeScript
Raw Permalink Normal View History

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