turkmentv_front/context/VoteContext.ts

8 lines
207 B
TypeScript

'use client';
import { IVoteContext } from '@/typings/context.type';
import { createContext } from 'react';
const VoteContext = createContext<IVoteContext>({} as IVoteContext);
export default VoteContext;