mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-29 22:19: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;
|