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