QQQ-32 udpating styles on query; record list & view sections; record labels; apps in nav; updated breadcrumb; updated navigation

This commit is contained in:
2022-08-09 15:57:10 -05:00
parent 7cb3c5ee88
commit 74717a092a
38 changed files with 4156 additions and 967 deletions

View File

@ -1,13 +1,6 @@
import React, {
useState,
useEffect,
JSXElementConstructor,
Key,
ReactElement,
} from "react";
import React, {useEffect} from "react";
import {SESSION_ID_COOKIE_NAME} from "App";
import {useCookies} from "react-cookie";
import {QTableMetaData} from "@kingsrook/qqq-frontend-core/lib/model/metaData/QTableMetaData";
interface Props
{
@ -27,3 +20,7 @@ export default function HandleAuthorizationError({errorMessage}: Props)
<div>{errorMessage}</div>
);
}
HandleAuthorizationError.defaultProps = {
errorMessage: "User authorization error.",
};