Joins on Record Query; Count action w/ distinct input/output; JSX Element option for pageHeader

This commit is contained in:
2023-04-24 12:30:19 -05:00
parent 8ed5a71f19
commit 472fb03ed0
10 changed files with 380 additions and 142 deletions

View File

@ -24,8 +24,8 @@ import {createContext} from "react";
interface QContext
{
pageHeader: string;
setPageHeader?: (header: string) => void;
pageHeader: string | JSX.Element;
setPageHeader?: (header: string | JSX.Element) => void;
accentColor: string;
setAccentColor?: (header: string) => void;
}