lbry-desktop/src/renderer/component/address/index.js
2017-12-07 14:10:43 -03:00

7 lines
184 B
JavaScript

import { connect } from "react-redux";
import { doShowSnackBar } from "redux/actions/app";
import Address from "./view";
export default connect(null, {
doShowSnackBar,
})(Address);