mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
9 lines
342 B
TypeScript
9 lines
342 B
TypeScript
import { getInjectionToken } from "@ogre-tools/injectable";
|
|
import type React from "react";
|
|
|
|
export type ReactApplicationWrapper = (Component: React.ComponentType) => React.ComponentType;
|
|
|
|
export const reactApplicationWrapperInjectionToken = getInjectionToken<ReactApplicationWrapper>({
|
|
id: "react-application-wrapper-injection-token",
|
|
});
|