platformer - v1.0.0
    Preparing search index...

    Props for Modal.

    interface ModalProps {
        children?: ReactNode;
        onClose?: () => void;
        open: boolean;
    }
    Index

    Properties

    children?: ReactNode

    Modal content.

    onClose?: () => void

    Optional callback invoked when the modal requests to close.

    open: boolean

    Whether the modal is visible.