@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
11 lines (10 loc) • 473 B
TypeScript
import * as React from "react";
import { QueryClientConfig } from "../state";
type ViewProviderProps = {
children: React.ReactNode;
queryClientConfig?: QueryClientConfig;
/** A custom document where views themes should be mounted. Useful when mounting views in an iframe. */
themeContainerDocument?: Document;
};
export declare const ViewProvider: ({ children, queryClientConfig, }: ViewProviderProps) => import("react/jsx-runtime").JSX.Element;
export {};