Sha256: b891843e8dcc8b67201b130b01aa4bdc26032569d1864eed6a5bff11ea713fd2
Contents?: true
Size: 382 Bytes
Versions: 11
Compression:
Stored size: 382 Bytes
Contents
import React from 'react'; import { useDispatch } from 'react-redux'; import { showToast } from '../../../helpers/toastHelper'; import OvalPoliciesIndex from './OvalPoliciesIndex'; const WrappedOvalPoliciesIndex = props => { const dispatch = useDispatch(); return <OvalPoliciesIndex {...props} showToast={showToast(dispatch)} />; }; export default WrappedOvalPoliciesIndex;
Version data entries
11 entries across 11 versions & 1 rubygems