UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

7 lines (6 loc) 278 B
import { ReactNode } from 'react'; import { UseEditableContext } from './use-editable-context'; export interface EditableContextProps { children: (context: UseEditableContext) => ReactNode; } export declare const EditableContext: (props: EditableContextProps) => ReactNode;