/* eslint-disable */ // @ts-nocheck import { lazy } from "react"; import type { AppRouteObject } from "../../routes"; const AddOAuth2 = lazy(() => import("../add/AddOAuth2")); export const IdentityProviderOAuth2Route: AppRouteObject = { path: "/:realm/identity-providers/oauth2/add", element: , handle: { access: "manage-identity-providers", breadcrumb: (t) => t("addOAuth2Provider"), }, };