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