Sha256: ec6e448cf5fe2b345c39fe29d11e994dab4d94ccf2d0a7d97ebf913cfe2b8c66
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 OvalContentsIndex from './OvalContentsIndex'; const WrappedOvalContentsIndex = props => { const dispatch = useDispatch(); return <OvalContentsIndex {...props} showToast={showToast(dispatch)} />; }; export default WrappedOvalContentsIndex;
Version data entries
11 entries across 11 versions & 1 rubygems