All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
8 lines
259 B
JavaScript
8 lines
259 B
JavaScript
import { useMonitorOutput } from './useMonitorOutput';
|
|
export function useCollectedProps(collector, monitor, connector) {
|
|
return useMonitorOutput(monitor, collector || function () {
|
|
return {};
|
|
}, function () {
|
|
return connector.reconnect();
|
|
});
|
|
} |