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