@devgateway/dvz-ui-react
Version:
A modular, embeddable React component library for data visualization and UI, built with TypeScript. Provides reusable components for charts, maps, dashboards, and more, with built-in support for internationalization and Redux integration.
17 lines (16 loc) • 490 B
TypeScript
import { default as React } from 'react';
export interface DesktopContainerProps {
children: React.ReactNode;
fixed: boolean;
header?: React.ReactNode;
}
export interface ResponsiveContainerProps {
children: React.ReactNode;
fixed?: boolean;
locale?: string;
pages?: any[];
header?: React.ReactNode;
footer?: React.ReactNode;
}
declare function ResponsiveContainer(props: ResponsiveContainerProps): React.JSX.Element;
export default ResponsiveContainer;