mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-25 03:35:24 +02:00
11 lines
227 B
TypeScript
11 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;
|