2022-09-19 19:27:20 +00:00
|
|
|
// Tyoes
|
2022-09-07 09:45:31 +00:00
|
|
|
import { createContext } from "react";
|
2022-09-19 19:27:20 +00:00
|
|
|
import { ContextType } from "../types/context";
|
2022-09-07 09:45:31 +00:00
|
|
|
|
2022-09-19 19:27:20 +00:00
|
|
|
export const PostContext: any = createContext<ContextType | null>(null);
|