UNPKG

@joint/react

Version:

React bindings and hooks for JointJS to build interactive diagrams and graphs.

10 lines (9 loc) 216 B
/** * Application selector that does nothing. * @param value - The value to return. * @returns The value passed as an argument. * @group Utils */ export function noopSelector<T>(value: T): T { return value; }