Files
bitburner-src/src/Gang/ui/Context.ts
T
2022-09-27 15:35:42 -04:00

9 lines
213 B
TypeScript

import React, { useContext } from "react";
import { Gang } from "../Gang";
export const Context = {
Gang: React.createContext<Gang>({} as Gang),
};
export const useGang = (): Gang => useContext(Context.Gang);