9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import IframeReact from './view';
|
||
|
|
||
|
const select = state => ({});
|
||
|
|
||
|
const perform = () => ({});
|
||
|
|
||
|
export default connect(select, perform)(IframeReact);
|