import { createDefinedContext } from "../../utils/definedContext"; export type PostcardContextValue = { postcard: string, setPostcard: React.Dispatch>, visible: boolean, setVisible: React.Dispatch>, } /** * Context containing data about the website's current postcard, the blurred background image. */ export const PostcardContext = createDefinedContext()