@steambrew/client
Version:
A support library for creating plugins with Millennium.
12 lines (11 loc) • 348 B
TypeScript
import { FC, ReactNode } from 'react';
export interface PanelSectionProps {
title?: string;
spinner?: boolean;
children?: ReactNode;
}
export declare const PanelSection: FC<PanelSectionProps>;
export interface PanelSectionRowProps {
children?: ReactNode;
}
export declare const PanelSectionRow: FC<PanelSectionRowProps>;