7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
import { createContext } from 'react';
|
|
import type { AuthContextValue } from '../types';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
export const AuthContext = createContext<AuthContextValue | undefined>(undefined);
|