@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.
10 lines (9 loc) • 340 B
TypeScript
import { PostType } from '@devgateway/wp-react-lib';
import { default as React } from 'react';
interface SlugContainerProps {
header?: React.ReactNode;
footer?: React.ReactNode;
pages?: PostType;
}
declare const SlugContainer: ({ header, footer, pages }?: SlugContainerProps) => React.JSX.Element;
export default SlugContainer;