mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-03 00:29:10 +00:00
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import type { Env } from "@app/lib/types/env";
|
|
import { createContext } from "react";
|
|
|
|
export interface EnvContextType {
|
|
env: Env;
|
|
}
|
|
|
|
const EnvContext = createContext<EnvContextType | undefined>(undefined);
|
|
|
|
export default EnvContext;
|