refactor main view to table and add production, import and export information per planet

This commit is contained in:
Calli
2023-07-16 19:02:11 +03:00
parent bc0c2f83a2
commit 4c392533da
11 changed files with 1906 additions and 15 deletions

View File

@@ -1,3 +1,4 @@
import { EvePraisalResult } from "@/eve-praisal";
import { AccessToken, CharacterUpdate } from "@/types";
import { Dispatch, SetStateAction, createContext } from "react";
@@ -21,6 +22,7 @@ export const SessionContext = createContext<{
EVE_SSO_CLIENT_ID: string;
compactMode: boolean;
toggleCompactMode: () => void;
piPrices: EvePraisalResult | undefined;
}>({
sessionReady: false,
refreshSession: () => {},
@@ -29,4 +31,5 @@ export const SessionContext = createContext<{
EVE_SSO_CLIENT_ID: "",
compactMode: false,
toggleCompactMode: () => {},
piPrices: undefined,
});