lbry-desktop/ui/component/i18nMessage/index.js
2019-11-11 13:27:29 -05:00

12 lines
180 B
JavaScript

import { connect } from 'react-redux';
import i18n from './view';
const select = state => ({});
const perform = () => ({});
export default connect(
select,
perform
)(i18n);