UNPKG

@cbinsights/fds

Version:
7 lines (6 loc) 244 B
declare type Props<T> = { render: (value: T, setValue: (newValue: T) => void) => JSX.Element; initialValue: T; }; export declare function State<ValueType>({ render, initialValue, }: Props<ValueType>): JSX.Element; export default State;