UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

7 lines (6 loc) 268 B
import { CircularProgressProps } from '@mui/material/CircularProgress'; export interface LoaderProps { noContainer?: boolean; title: string; } export default function Loader(props: LoaderProps & CircularProgressProps): import("react/jsx-runtime").JSX.Element;