imported logos, header displays logo based on whiteLabel

This commit is contained in:
Carter 2024-10-31 17:21:12 -06:00
parent 0d5d2e821f
commit 95a1ba486b
214 changed files with 290 additions and 193 deletions

View file

@ -0,0 +1,8 @@
// import { useTheme, Theme } from "@material-ui/core";
import { Theme, useTheme } from "@mui/material";
export function useThemeType() {
const theme: Theme = useTheme();
return theme.palette.mode;
}