8 lines
207 B
TypeScript
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;
|