Add import order sorting rules
Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
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 { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
|
||||
import { assetsQuery, assetNodeQuery } from "../hooks/graph/AssetGraph";
|
||||
import { assetNodeQuery, assetsQuery } from "../hooks/graph/AssetGraph";
|
||||
|
||||
export const assetRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
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 { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
|
||||
import { auditsQuery, auditNodeQuery } from "../hooks/graph/AuditGraph";
|
||||
import { auditNodeQuery, auditsQuery } from "../hooks/graph/AuditGraph";
|
||||
|
||||
export const auditRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import {
|
||||
continualImprovementsQuery,
|
||||
continualImprovementNodeQuery,
|
||||
} from "/hooks/graph/ContinualImprovementGraph";
|
||||
import type { ContinualImprovementGraphListQuery } from "/__generated__/core/ContinualImprovementGraphListQuery.graphql";
|
||||
import type { ContinualImprovementGraphNodeQuery } from "/__generated__/core/ContinualImprovementGraphNodeQuery.graphql";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import {
|
||||
continualImprovementNodeQuery,
|
||||
continualImprovementsQuery,
|
||||
} from "/hooks/graph/ContinualImprovementGraph";
|
||||
|
||||
export const continualImprovementRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
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 { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
|
||||
import { dataQuery, datumNodeQuery } from "../hooks/graph/DatumGraph";
|
||||
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { redirect, type LoaderFunctionArgs } from "react-router";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { type LoaderFunctionArgs, redirect } from "react-router";
|
||||
|
||||
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";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { documentNodeQuery, documentsQuery } from "/hooks/graph/DocumentGraph";
|
||||
|
||||
const documentTabs = (prefix: string) => {
|
||||
return [
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { Fragment } from "react";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
import {
|
||||
frameworksQuery,
|
||||
frameworkNodeQuery,
|
||||
frameworkControlNodeQuery,
|
||||
} from "/hooks/graph/FrameworkGraph";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import type { FrameworkGraphControlNodeQuery } from "/__generated__/core/FrameworkGraphControlNodeQuery.graphql";
|
||||
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 { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import {
|
||||
frameworkControlNodeQuery,
|
||||
frameworkNodeQuery,
|
||||
frameworksQuery,
|
||||
} from "/hooks/graph/FrameworkGraph";
|
||||
|
||||
import { ControlSkeleton } from "../components/skeletons/ControlSkeleton";
|
||||
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
} from "@probo/routes";
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { redirect } from "react-router";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
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";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { measureNodeQuery, measuresQuery } from "/hooks/graph/MeasureGraph";
|
||||
|
||||
export const measureRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { redirect, type LoaderFunctionArgs } from "react-router";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { type LoaderFunctionArgs, redirect } from "react-router";
|
||||
|
||||
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";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { meetingNodeQuery, meetingsQuery } from "/hooks/graph/MeetingGraph";
|
||||
|
||||
const meetingTabs = (prefix: string) => {
|
||||
return [
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
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 { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
|
||||
import {
|
||||
nonconformitiesQuery,
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import {
|
||||
obligationsQuery,
|
||||
obligationNodeQuery,
|
||||
} from "/hooks/graph/ObligationGraph";
|
||||
import type { ObligationGraphListQuery } from "/__generated__/core/ObligationGraphListQuery.graphql";
|
||||
import type { ObligationGraphNodeQuery } from "/__generated__/core/ObligationGraphNodeQuery.graphql";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import {
|
||||
obligationNodeQuery,
|
||||
obligationsQuery,
|
||||
} from "/hooks/graph/ObligationGraph";
|
||||
|
||||
export const obligationRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { loadQuery } from "react-relay";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import type { PeopleGraphNodeQuery } from "/__generated__/core/PeopleGraphNodeQuery.graphql";
|
||||
import type { PeopleGraphPaginatedQuery } from "/__generated__/core/PeopleGraphPaginatedQuery.graphql";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton.tsx";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import {
|
||||
paginatedPeopleQuery,
|
||||
peopleNodeQuery,
|
||||
} from "/hooks/graph/PeopleGraph";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import type { PeopleGraphPaginatedQuery } from "/__generated__/core/PeopleGraphPaginatedQuery.graphql";
|
||||
import type { PeopleGraphNodeQuery } from "/__generated__/core/PeopleGraphNodeQuery.graphql";
|
||||
|
||||
export const peopleRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import type { ProcessingActivityGraphListQuery } from "/__generated__/core/ProcessingActivityGraphListQuery.graphql";
|
||||
import type { ProcessingActivityGraphNodeQuery } from "/__generated__/core/ProcessingActivityGraphNodeQuery.graphql";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import {
|
||||
processingActivitiesQuery,
|
||||
processingActivityNodeQuery,
|
||||
} from "/hooks/graph/ProcessingActivityGraph";
|
||||
import type { ProcessingActivityGraphListQuery } from "/__generated__/core/ProcessingActivityGraphListQuery.graphql";
|
||||
import type { ProcessingActivityGraphNodeQuery } from "/__generated__/core/ProcessingActivityGraphNodeQuery.graphql";
|
||||
|
||||
export const processingActivityRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import {
|
||||
rightsRequestsQuery,
|
||||
rightsRequestNodeQuery,
|
||||
} from "/hooks/graph/RightsRequestGraph";
|
||||
import type { RightsRequestGraphListQuery } from "/__generated__/core/RightsRequestGraphListQuery.graphql";
|
||||
import type { RightsRequestGraphNodeQuery } from "/__generated__/core/RightsRequestGraphNodeQuery.graphql";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import {
|
||||
rightsRequestNodeQuery,
|
||||
rightsRequestsQuery,
|
||||
} from "/hooks/graph/RightsRequestGraph";
|
||||
|
||||
export const rightsRequestRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
} from "@probo/routes";
|
||||
import { Fragment } from "react";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { redirect } from "react-router";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
|
||||
import type { RiskGraphListQuery } from "/__generated__/core/RiskGraphListQuery.graphql";
|
||||
import type { RiskGraphNodeQuery } from "/__generated__/core/RiskGraphNodeQuery.graphql";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
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,16 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
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";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { snapshotNodeQuery, snapshotsQuery } from "/hooks/graph/SnapshotGraph";
|
||||
|
||||
export const snapshotsRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { type AppRoute, loaderFromQueryLoader, withQueryRef } from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
import { loaderFromQueryLoader, withQueryRef, type AppRoute } from "@probo/routes";
|
||||
|
||||
import { coreEnvironment } from "/environments";
|
||||
import type { StateOfApplicabilityGraphNodeQuery } from "/__generated__/core/StateOfApplicabilityGraphNodeQuery.graphql";
|
||||
import type { StateOfApplicabilityGraphPaginatedQuery } from "/__generated__/core/StateOfApplicabilityGraphPaginatedQuery.graphql";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton.tsx";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import {
|
||||
paginatedStateOfApplicabilityQuery,
|
||||
stateOfApplicabilityNodeQuery,
|
||||
} from "/hooks/graph/StateOfApplicabilityGraph";
|
||||
import type { StateOfApplicabilityGraphPaginatedQuery } from "/__generated__/core/StateOfApplicabilityGraphPaginatedQuery.graphql";
|
||||
import type { StateOfApplicabilityGraphNodeQuery } from "/__generated__/core/StateOfApplicabilityGraphNodeQuery.graphql";
|
||||
|
||||
export const statesOfApplicabilityRoutes = [
|
||||
{
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { loadQuery } from "react-relay";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
import type { TaskGraphQuery } from "/__generated__/core/TaskGraphQuery.graphql";
|
||||
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 = [
|
||||
{
|
||||
path: "tasks",
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
import { loadQuery } from "react-relay";
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
import { loadQuery } from "react-relay";
|
||||
|
||||
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 { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
|
||||
import { trustCenterQuery } from "../hooks/graph/TrustCenterGraph";
|
||||
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
import { lazy } from "@probo/react-lazy";
|
||||
import { loadQuery } from "react-relay";
|
||||
import {
|
||||
type AppRoute,
|
||||
loaderFromQueryLoader,
|
||||
withQueryRef,
|
||||
type AppRoute,
|
||||
} from "@probo/routes";
|
||||
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 type { VendorGraphListQuery } from "/__generated__/core/VendorGraphListQuery.graphql";
|
||||
import type { VendorGraphNodeQuery } from "/__generated__/core/VendorGraphNodeQuery.graphql";
|
||||
import { LinkCardSkeleton } from "/components/skeletons/LinkCardSkeleton";
|
||||
import { PageSkeleton } from "/components/skeletons/PageSkeleton";
|
||||
import { coreEnvironment } from "/environments";
|
||||
import { vendorNodeQuery, vendorsQuery } from "/hooks/graph/VendorGraph";
|
||||
|
||||
export const vendorRoutes = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user