Sha256: 7a29811c4c0c01c104c62f46a370ed9b7ed2a21d0f70598a0062d732b2a8b0ba
Contents?: true
Size: 422 Bytes
Versions: 80
Compression:
Stored size: 422 Bytes
Contents
import React, { useEffect } from 'react'; import { useDispatch } from 'react-redux'; import InventorySettings from './InventorySettings'; import { getSettings } from './InventorySettingsActions'; const ConnectedInventorySettings = () => { const dispatch = useDispatch(); useEffect(() => { dispatch(getSettings()); }, [dispatch]); return <InventorySettings />; }; export default ConnectedInventorySettings;
Version data entries
80 entries across 80 versions & 1 rubygems