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