omnidev / components /contexts /user-context.tsx
kalhdrawi's picture
ุฃูˆู„ ุฑูุน ู„ู„ู…ู„ูุงุช ุฅู„ู‰ ุงู„ุณุจูŠุณ kalhdrawi/omnidev
1cf8f01
raw
history blame
173 Bytes
"use client";
import { createContext } from "react";
import { User } from "@/types";
export const UserContext = createContext({
user: undefined as User | undefined,
});