package.dist.components.frame.frame.d.cts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
The newest version!
import { Assign } from '../../types';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface FrameBaseProps {
/** Additional content to be inserted into the frame's */
head?: React.ReactNode;
/** Callback function to be executed when the frame is mounted */
onMount?: () => void;
/** Callback function to be executed when the frame is unmounted */
onUnmount?: () => void;
}
export interface FrameProps extends Assign, FrameBaseProps> {
}
export declare const Frame: ForwardRefExoticComponent>;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy