react-admin-panel-orient/src/context/PostContext.tsx

6 lines
170 B
TypeScript

// Tyoes
import { createContext } from "react";
import { ContextType } from "../types/context";
export const PostContext: any = createContext<ContextType | null>(null);