turkmentv_front/typings/theme.type.ts

7 lines
162 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import { Dispatch, SetStateAction } from 'react';
export interface ITheme {
theme: 'dark' | 'light';
setTheme: Dispatch<SetStateAction<'dark' | 'light'>>;
}