fosrl.pangolin/src/contexts/envContext.ts

11 lines
227 B
TypeScript
Raw Normal View History

import { env } from "@app/lib/types/env";
import { createContext } from "react";
interface EnvContextType {
env: env;
}
const EnvContext = createContext<EnvContextType | undefined>(undefined);
export default EnvContext;