2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import CardMedia from './view';
|
2017-07-14 01:18:28 +02:00
|
|
|
|
|
|
|
const select = state => ({});
|
|
|
|
const perform = dispatch => ({});
|
|
|
|
|
|
|
|
export default connect(select, perform)(CardMedia);
|