Interface ConsumerProps<T>

interface ConsumerProps<T> {
    children: ((value: T) => ReactNode);
}

Type Parameters

  • T

Properties

Properties

children: ((value: T) => ReactNode)