@atlaskit/form
Version:
A form allows people to input information.
12 lines (11 loc) • 440 B
TypeScript
import type { MessageProps } from './message';
/**
* __Message wrapper __
*
* A message wrapper is used to allow assistive technologies, like screen readers, to announce error or
* valid messages. This must be loaded into the DOM before the
* ErrorMessage, ValidMessage is loaded. Otherwise, assistive technologies
* may not render the message.
*
*/
export declare const MessageWrapper: ({ children }: MessageProps) => JSX.Element;