@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
10 lines (9 loc) • 381 B
TypeScript
import React from 'react';
import { BaseComponentProps } from '../internal/base-component';
export interface FormProps extends BaseComponentProps {
children?: React.ReactNode;
header?: React.ReactNode;
errorText?: React.ReactNode;
actions?: React.ReactNode;
}
export default function Form({ children, header, errorText, actions, ...rest }: FormProps): JSX.Element;