turkmentv_front/context/VoteContext.ts

8 lines
207 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
'use client';
import { IVoteContext } from '@/typings/context.type';
import { createContext } from 'react';
const VoteContext = createContext<IVoteContext>({} as IVoteContext);
export default VoteContext;