10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import FormNewCollection from './view';
|
||
|
import { doPlaylistAddAndAllowPlaying } from 'redux/actions/content';
|
||
|
|
||
|
const perform = {
|
||
|
doPlaylistAddAndAllowPlaying,
|
||
|
};
|
||
|
|
||
|
export default connect(null, perform)(FormNewCollection);
|