@@ -1,16 +1,18 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { assetsQuery, assetNodeQuery } from "../hooks/graph/AssetGraph";
|
||||
import type { AssetGraphListQuery } from "/__generated__/core/AssetGraphListQuery.graphql";
|
||||
import type { AssetGraphNodeQuery } from "/__generated__/core/AssetGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import type { AssetGraphListQuery } from "/__generated__/core/AssetGraphListQuery.graphql";
|
||||
import type { AssetGraphNodeQuery } from "/__generated__/core/AssetGraphNodeQuery.graphql";
|
||||
|
||||
import { assetsQuery, assetNodeQuery } from "../hooks/graph/AssetGraph";
|
||||
|
||||
export const assetRoutes = [
|
||||
{
|
||||
path: "assets",
|
||||
|
||||
@@ -1,16 +1,18 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { auditsQuery, auditNodeQuery } from "../hooks/graph/AuditGraph";
|
||||
import type { AuditGraphListQuery } from "/__generated__/core/AuditGraphListQuery.graphql";
|
||||
import type { AuditGraphNodeQuery } from "/__generated__/core/AuditGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import type { AuditGraphListQuery } from "/__generated__/core/AuditGraphListQuery.graphql";
|
||||
import type { AuditGraphNodeQuery } from "/__generated__/core/AuditGraphNodeQuery.graphql";
|
||||
|
||||
import { auditsQuery, auditNodeQuery } from "../hooks/graph/AuditGraph";
|
||||
|
||||
export const auditRoutes = [
|
||||
{
|
||||
path: "audits",
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
continualImprovementsQuery,
|
||||
continualImprovementNodeQuery,
|
||||
} from "/hooks/graph/ContinualImprovementGraph";
|
||||
import type { ContinualImprovementGraphListQuery } from "/__generated__/core/ContinualImprovementGraphListQuery.graphql";
|
||||
import type { ContinualImprovementGraphNodeQuery } from "/__generated__/core/ContinualImprovementGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
export const continualImprovementRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,16 +1,18 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { dataQuery, datumNodeQuery } from "../hooks/graph/DatumGraph";
|
||||
import type { DatumGraphListQuery } from "/__generated__/core/DatumGraphListQuery.graphql";
|
||||
import type { DatumGraphNodeQuery } from "/__generated__/core/DatumGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import type { DatumGraphListQuery } from "/__generated__/core/DatumGraphListQuery.graphql";
|
||||
import type { DatumGraphNodeQuery } from "/__generated__/core/DatumGraphNodeQuery.graphql";
|
||||
|
||||
import { dataQuery, datumNodeQuery } from "../hooks/graph/DatumGraph";
|
||||
|
||||
export const dataRoutes = [
|
||||
{
|
||||
path: "data",
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { documentsQuery } from "/hooks/graph/DocumentGraph";
|
||||
import { documentNodeQuery } from "/hooks/graph/DocumentGraph";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { redirect, type LoaderFunctionArgs } from "react-router";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { documentsQuery, documentNodeQuery } from "/hooks/graph/DocumentGraph";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { DocumentGraphListQuery } from "/__generated__/core/DocumentGraphListQuery.graphql";
|
||||
import type { DocumentGraphNodeQuery } from "/__generated__/core/DocumentGraphNodeQuery.graphql";
|
||||
|
||||
|
||||
@@ -1,23 +1,25 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import {
|
||||
frameworksQuery,
|
||||
frameworkNodeQuery,
|
||||
frameworkControlNodeQuery,
|
||||
} from "/hooks/graph/FrameworkGraph";
|
||||
import { Fragment } from "react";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { ControlSkeleton } from "../components/skeletons/ControlSkeleton";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import {
|
||||
frameworksQuery,
|
||||
frameworkNodeQuery,
|
||||
frameworkControlNodeQuery,
|
||||
} from "/hooks/graph/FrameworkGraph";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import type { FrameworkGraphListQuery } from "/__generated__/core/FrameworkGraphListQuery.graphql";
|
||||
import type { FrameworkGraphNodeQuery } from "/__generated__/core/FrameworkGraphNodeQuery.graphql";
|
||||
import type { FrameworkGraphControlNodeQuery } from "/__generated__/core/FrameworkGraphControlNodeQuery.graphql";
|
||||
|
||||
import { ControlSkeleton } from "../components/skeletons/ControlSkeleton";
|
||||
|
||||
export const frameworkRoutes = [
|
||||
{
|
||||
path: "frameworks",
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { measureNodeQuery, measuresQuery } from "/hooks/graph/MeasureGraph";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { redirect } from "react-router";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { measureNodeQuery, measuresQuery } from "/hooks/graph/MeasureGraph";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { MeasureGraphListQuery } from "/__generated__/core/MeasureGraphListQuery.graphql";
|
||||
import type { MeasureGraphNodeQuery } from "/__generated__/core/MeasureGraphNodeQuery.graphql";
|
||||
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { meetingsQuery } from "/hooks/graph/MeetingGraph";
|
||||
import { meetingNodeQuery } from "/hooks/graph/MeetingGraph";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { redirect, type LoaderFunctionArgs } from "react-router";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { MeetingGraphListQuery } from "/__generated__/core/MeetingGraphListQuery.graphql";
|
||||
import type { MeetingGraphNodeQuery } from "/__generated__/core/MeetingGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { meetingsQuery, meetingNodeQuery } from "/hooks/graph/MeetingGraph";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { MeetingGraphListQuery } from "/__generated__/core/MeetingGraphListQuery.graphql";
|
||||
import type { MeetingGraphNodeQuery } from "/__generated__/core/MeetingGraphNodeQuery.graphql";
|
||||
|
||||
const meetingTabs = (prefix: string) => {
|
||||
return [
|
||||
{
|
||||
|
||||
@@ -1,19 +1,21 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
nonconformitiesQuery,
|
||||
nonconformityNodeQuery,
|
||||
} from "../hooks/graph/NonconformityGraph";
|
||||
import type { NonconformityGraphListQuery } from "/__generated__/core/NonconformityGraphListQuery.graphql";
|
||||
import type { NonconformityGraphNodeQuery } from "/__generated__/core/NonconformityGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import type { NonconformityGraphListQuery } from "/__generated__/core/NonconformityGraphListQuery.graphql";
|
||||
import type { NonconformityGraphNodeQuery } from "/__generated__/core/NonconformityGraphNodeQuery.graphql";
|
||||
|
||||
import {
|
||||
nonconformitiesQuery,
|
||||
nonconformityNodeQuery,
|
||||
} from "../hooks/graph/NonconformityGraph";
|
||||
|
||||
export const nonconformityRoutes = [
|
||||
{
|
||||
path: "nonconformities",
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
obligationsQuery,
|
||||
obligationNodeQuery,
|
||||
} from "/hooks/graph/ObligationGraph";
|
||||
import type { ObligationGraphListQuery } from "/__generated__/core/ObligationGraphListQuery.graphql";
|
||||
import type { ObligationGraphNodeQuery } from "/__generated__/core/ObligationGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
export const obligationRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { loadQuery } from "react-relay";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton.tsx";
|
||||
import {
|
||||
@@ -7,11 +13,6 @@ import {
|
||||
peopleNodeQuery,
|
||||
} from "/hooks/graph/PeopleGraph";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import type { PeopleGraphPaginatedQuery } from "/__generated__/core/PeopleGraphPaginatedQuery.graphql";
|
||||
import type { PeopleGraphNodeQuery } from "/__generated__/core/PeopleGraphNodeQuery.graphql";
|
||||
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
processingActivitiesQuery,
|
||||
processingActivityNodeQuery,
|
||||
} from "/hooks/graph/ProcessingActivityGraph";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import {
|
||||
processingActivitiesQuery,
|
||||
processingActivityNodeQuery,
|
||||
} from "/hooks/graph/ProcessingActivityGraph";
|
||||
import type { ProcessingActivityGraphListQuery } from "/__generated__/core/ProcessingActivityGraphListQuery.graphql";
|
||||
import type { ProcessingActivityGraphNodeQuery } from "/__generated__/core/ProcessingActivityGraphNodeQuery.graphql";
|
||||
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
rightsRequestsQuery,
|
||||
rightsRequestNodeQuery,
|
||||
} from "/hooks/graph/RightsRequestGraph";
|
||||
import type { RightsRequestGraphListQuery } from "/__generated__/core/RightsRequestGraphListQuery.graphql";
|
||||
import type { RightsRequestGraphNodeQuery } from "/__generated__/core/RightsRequestGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
export const rightsRequestRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { RisksPageSkeleton } from "/components/skeletons/RisksPageSkeleton.tsx";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { riskNodeQuery, risksQuery } from "/hooks/graph/RiskGraph";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { redirect } from "react-router";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { RiskGraphNodeQuery } from "/__generated__/core/RiskGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { RisksPageSkeleton } from "/components/skeletons/RisksPageSkeleton.tsx";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { riskNodeQuery, risksQuery } from "/hooks/graph/RiskGraph";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { RiskGraphNodeQuery } from "/__generated__/core/RiskGraphNodeQuery.graphql";
|
||||
import type { RiskGraphListQuery } from "/__generated__/core/RiskGraphListQuery.graphql";
|
||||
|
||||
export const riskRoutes = [
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { snapshotsQuery, snapshotNodeQuery } from "/hooks/graph/SnapshotGraph";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import type { SnapshotGraphListQuery } from "/__generated__/core/SnapshotGraphListQuery.graphql";
|
||||
import type { SnapshotGraphNodeQuery } from "/__generated__/core/SnapshotGraphNodeQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { snapshotsQuery, snapshotNodeQuery } from "/hooks/graph/SnapshotGraph";
|
||||
import type { SnapshotGraphListQuery } from "/__generated__/core/SnapshotGraphListQuery.graphql";
|
||||
import type { SnapshotGraphNodeQuery } from "/__generated__/core/SnapshotGraphNodeQuery.graphql";
|
||||
|
||||
export const snapshotsRoutes = [
|
||||
{
|
||||
path: "snapshots",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { loaderFromQueryLoader, withQueryRef, type AppRoute } from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton.tsx";
|
||||
import {
|
||||
@@ -8,7 +10,6 @@ import {
|
||||
} from "/hooks/graph/StateOfApplicabilityGraph";
|
||||
import type { StateOfApplicabilityGraphPaginatedQuery } from "/__generated__/core/StateOfApplicabilityGraphPaginatedQuery.graphql";
|
||||
import type { StateOfApplicabilityGraphNodeQuery } from "/__generated__/core/StateOfApplicabilityGraphNodeQuery.graphql";
|
||||
import { loaderFromQueryLoader, withQueryRef, type AppRoute } from "@probo/routes";
|
||||
|
||||
export const statesOfApplicabilityRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { tasksQuery } from "/hooks/graph/TaskGraph";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { tasksQuery } from "/hooks/graph/TaskGraph";
|
||||
import type { TaskGraphQuery } from "/__generated__/core/TaskGraphQuery.graphql";
|
||||
export const taskRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,16 +1,18 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { trustCenterQuery } from "../hooks/graph/TrustCenterGraph";
|
||||
import type { TrustCenterGraphQuery } from "/__generated__/core/TrustCenterGraphQuery.graphql";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { TrustCenterGraphQuery } from "/__generated__/core/TrustCenterGraphQuery.graphql";
|
||||
|
||||
import { trustCenterQuery } from "../hooks/graph/TrustCenterGraph";
|
||||
|
||||
export const trustCenterRoutes = [
|
||||
{
|
||||
path: "trust-center",
|
||||
|
||||
@@ -1,14 +1,15 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { vendorNodeQuery, vendorsQuery } from "/hooks/graph/VendorGraph";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { vendorNodeQuery, vendorsQuery } from "/hooks/graph/VendorGraph";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { VendorGraphListQuery } from "/__generated__/core/VendorGraphListQuery.graphql";
|
||||
import type { VendorGraphNodeQuery } from "/__generated__/core/VendorGraphNodeQuery.graphql";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user