@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
15 lines (14 loc) • 643 B
TypeScript
import React from 'react';
import { BaseComponentProps } from '../internal/base-component';
export interface ContainerProps extends BaseComponentProps {
header?: React.ReactNode;
disableHeaderPaddings?: boolean;
children?: React.ReactNode;
disableContentPaddings?: boolean;
footer?: React.ReactNode;
}
export interface InternalContainerProps extends ContainerProps {
__stickyHeader?: boolean;
__stickyOffset?: number;
}
export default function Container({ header, disableHeaderPaddings, footer, children, disableContentPaddings, __stickyHeader, __stickyOffset, ...restProps }: InternalContainerProps): JSX.Element;